X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=blender%2Fio_mspgl%2F__init__.py;h=0731c32f92c938881f22248fa19a350534eed6f9;hb=1a561b4e8d77fd14711b2304152e0b2408a49fdf;hp=c13345fafa224bdc69b1b7987ee59778f395d8ae;hpb=bc2fe1bd3e167fd8eed05f9ffeda3c255f445f70;p=libs%2Fgl.git diff --git a/blender/io_mspgl/__init__.py b/blender/io_mspgl/__init__.py index c13345fa..0731c32f 100644 --- a/blender/io_mspgl/__init__.py +++ b/blender/io_mspgl/__init__.py @@ -108,6 +108,7 @@ class ExportMspGLObject(bpy.types.Operator, ExportMspGLMeshBase): srgb_colors = bpy.props.BoolProperty(name="sRGB colors", description="Export material colors as sRGB instead of linear", default=True) separate_mesh = bpy.props.BoolProperty(name="Separate mesh", description="Write mesh data into a separate file", default=False) + shared_mesh = bpy.props.BoolProperty(name="Shared mesh", description="Use mesh name for mesh file to enable sharing", default=True) separate_tech = bpy.props.BoolProperty(name="Separate technique", description="Write technique data into a separate file", default=False) shared_tech = bpy.props.BoolProperty(name="Shared technique", description="Use material name for technique file to enable sharing", default=True) @@ -134,6 +135,8 @@ class ExportMspGLObject(bpy.types.Operator, ExportMspGLMeshBase): col = self.layout.column() col.label("Files") col.prop(self, "separate_mesh") + if self.separate_mesh: + col.prop(self, "shared_mesh") col.prop(self, "separate_tech") if self.separate_tech: col.prop(self, "shared_tech")