Skip to content

Commit 960a72f

Browse files
committed
Bump version
1 parent 621fb72 commit 960a72f

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

io_xplane2blender/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
# Contains informations for Blender to recognize and categorize the addon.
2121
bl_info = {
22-
"name": "Export: X-Plane (.obj)",
22+
"name": "XPlane2Blender Export for X-Plane OBJs",
2323
"description": "Export X-Plane objects/planes (.obj format)",
2424
"author": "Ted Greene, Ben Supnik, Amy Parent, Maya F. Eroglu",
2525
"version": (4, 3, 3),

io_xplane2blender/xplane_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
CURRENT_ADDON_VERSION: Tuple[int, int, int] = bl_info["version"]
1111

1212
# The current build type, must be a member of XPlane2BlenderVersion.BUILD_TYPE
13-
CURRENT_BUILD_TYPE = xplane_constants.BUILD_TYPE_BETA
13+
CURRENT_BUILD_TYPE = xplane_constants.BUILD_TYPE_RC
1414

1515
# The current build type version, must be > 0
1616
# if not BUILD_TYPE_DEV or BULD_TYPE_LEGACY

io_xplane2blender/xplane_ui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1905,8 +1905,8 @@ def conditions_layout(
19051905

19061906
def lod_layout(layout: bpy.types.UILayout, obj: bpy.types.Object) -> None:
19071907
row = layout.row()
1908-
#row.prop(obj.xplane, "override_lods")
1909-
if int(obj.xplane.layer.lods) > 0:
1908+
row.prop(obj.xplane, "override_lods")
1909+
if obj.xplane.override_lods:
19101910
box = layout.box()
19111911
box.row().prop(obj.xplane, "lod", text="LOD")
19121912

0 commit comments

Comments
 (0)