]> git.tdb.fi Git - libs/gl.git/blobdiff - blender/io_mspgl/__init__.py
Add an option to use shared meshes when exporting
[libs/gl.git] / blender / io_mspgl / __init__.py
index b7e14fdad19d0bae3ae027c31f67fb6f87ed38a4..0731c32f92c938881f22248fa19a350534eed6f9 100644 (file)
@@ -15,6 +15,8 @@ import bpy
 from bpy_extras.io_utils import ExportHelper
 
 class ExportMspGLBase(ExportHelper):
+       show_progress = bpy.props.BoolProperty(name="Show progress", description="Display progress indicator while exporting", default=True)
+
        def execute(self, context):
                exporter = self.create_exporter()
                self.prepare_exporter(exporter)
@@ -106,9 +108,12 @@ 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)
 
+       export_lods = bpy.props.BoolProperty(name="Export LoDs", description="Export all levels of detail", default=True)
+
        def create_exporter(self):
                from .export_object import ObjectExporter
                return ObjectExporter()
@@ -118,6 +123,7 @@ class ExportMspGLObject(bpy.types.Operator, ExportMspGLMeshBase):
 
                col = self.general_col
                col.prop(self, "external_tech")
+               col.prop(self, "export_lods")
 
                col = self.texturing_col
                col.prop(self, "textures")
@@ -129,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")
@@ -144,7 +152,7 @@ class ExportMspGLArmature(bpy.types.Operator, ExportMspGLBase):
                return ArmatureExporter()
 
 class ExportMspGLScene(bpy.types.Operator, ExportMspGLBase):
-       bl_idname = "export.mspgl_scene"
+       bl_idname = "export_scene.mspgl_scene"
        bl_label = "Export Msp GL scene"
 
        filename_ext = ".scene"
@@ -166,7 +174,7 @@ def menu_func_export(self, context):
        self.layout.operator(ExportMspGLArmature.bl_idname, text="Msp GL armature")
        self.layout.operator(ExportMspGLScene.bl_idname, text="Msp GL scene")
 
-from .properties import MspGLProperties
+from .properties import MspGLMeshProperties, MspGLObjectProperties
 
 def register():
        bpy.utils.register_module(__name__)