Skip to content

Commit 20669d7

Browse files
committed
Add experimental note to bobj
1 parent 50bf520 commit 20669d7

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

phobos/blender/phobosgui.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1409,7 +1409,10 @@ def draw(self, context):
14091409
cmesh.label(text="Meshes")
14101410
for meshtype in phobos_defs.MESH_TYPES:
14111411
typename = "export_mesh_" + meshtype
1412-
cmesh.prop(bpy.context.scene, typename)
1412+
if meshtype == "bobj":
1413+
cmesh.prop(bpy.context.scene, typename, text="bobj (exp.)")
1414+
else:
1415+
cmesh.prop(bpy.context.scene, typename)
14131416

14141417
# Settings for submodel export
14151418
inlayout2 = self.layout.split()

0 commit comments

Comments
 (0)