]> git.tdb.fi Git - libs/gl.git/blobdiff - blender/io_mspgl/__init__.py
Remove the compound property from exporter
[libs/gl.git] / blender / io_mspgl / __init__.py
index a3bedab51e95c70cdd28a62a50c7626177ca8b9d..899bdcedd434738708eb5b13cfbde0386cd56b16 100644 (file)
@@ -36,14 +36,9 @@ class ExportMspGLMeshBase(ExportMspGLBase):
        max_strip_len = bpy.props.IntProperty(name="Max strip length", description="Maximum length for a triangle strip", default=1024, min=4, max=16384)
        optimize_cache = bpy.props.BoolProperty(name="Optimize cache", description="Optimize element order for vertex cache", default=True)
        cache_size = bpy.props.IntProperty(name="Cache size", description="Simulated vertex cache size used in optimization", default=64, min=8, max=1024)
-       compound = bpy.props.BoolProperty(name="Compound", description="Combine all selected objects into one for exporting", default=False)
 
        def draw(self, context):
-               col = self.layout.column()
-               col.prop(self, "compound")
-               self.general_col = col
-
-               self.layout.separator()
+               self.general_col = self.layout.column()
 
                col = self.layout.column()
                col.label("Triangle strips")
@@ -99,6 +94,7 @@ class ExportMspGLObject(bpy.types.Operator, ExportMspGLMeshBase):
                col.prop(self, "external_tech")
                col.prop(self, "export_lods")
                col.prop(self, "textures")
+               col.separator()
 
                self.layout.separator();