Skip to content

Commit

Permalink
Merge pull request #58 from MrClock8163/dev
Browse files Browse the repository at this point in the history
v2.3.1
  • Loading branch information
MrClock8163 authored Apr 4, 2024
2 parents 95a2dc8 + cce7609 commit b7c34ef
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions Arma3ObjectBuilder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [v2.3.1](https://github.com/MrClock8163/Arma3ObjectBuilder/releases/tag/v2.3.1) (Blender 2.90 -> 4.1)

### Fixed

- Sort Sections P3D export option was operating on the wrong object, and wasn't actually affecting the output model

## [v2.3.0](https://github.com/MrClock8163/Arma3ObjectBuilder/releases/tag/v2.3.0) (Blender 2.90 -> 4.1)

### Added
Expand Down
2 changes: 1 addition & 1 deletion Arma3ObjectBuilder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Arma 3 Object Builder",
"description": "Collection of tools for editing Arma 3 content",
"author": "MrClock (present add-on), Hans-Joerg \"Alwarren\" Frieden (original ArmaToolbox add-on)",
"version": (2, 3, 0),
"version": (2, 3, 1),
"blender": (2, 90, 0),
"location": "Object Builder panels",
"warning": "Development",
Expand Down
2 changes: 1 addition & 1 deletion Arma3ObjectBuilder/io/export_p3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ def get_lod_data(operator, context, validator, temp_collection):
# community wiki: https://community.bistudio.com/wiki/Section_Count.
# Some corrections: https://mrcmodding.gitbook.io/home/documents/sections.
if operator.sort_sections:
sort_sections(obj)
sort_sections(main_obj)

for copy, is_valid_copy in zip(main_obj.a3ob_properties_object.copies, is_valid_copies):
main_obj_copy = duplicate_object(main_obj, temp_collection)
Expand Down

0 comments on commit b7c34ef

Please sign in to comment.