We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50bf520 commit 20669d7Copy full SHA for 20669d7
1 file changed
phobos/blender/phobosgui.py
@@ -1409,7 +1409,10 @@ def draw(self, context):
1409
cmesh.label(text="Meshes")
1410
for meshtype in phobos_defs.MESH_TYPES:
1411
typename = "export_mesh_" + meshtype
1412
- cmesh.prop(bpy.context.scene, typename)
+ if meshtype == "bobj":
1413
+ cmesh.prop(bpy.context.scene, typename, text="bobj (exp.)")
1414
+ else:
1415
+ cmesh.prop(bpy.context.scene, typename)
1416
1417
# Settings for submodel export
1418
inlayout2 = self.layout.split()
0 commit comments