]> git.tdb.fi Git - libs/gl.git/blobdiff - blender/io_mspgl/__init__.py
Minor adjustments
[libs/gl.git] / blender / io_mspgl / __init__.py
index b7e14fdad19d0bae3ae027c31f67fb6f87ed38a4..b1bb2f0de8c83c9af12ebace525624c66582194c 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)
@@ -144,7 +146,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"