]> git.tdb.fi Git - libs/gl.git/blobdiff - blender/io_mspgl/__init__.py
Rewrite triangle strip generation in the Blender exporter
[libs/gl.git] / blender / io_mspgl / __init__.py
index a275110ee0cc2cd6b76682b526dd0c0a8fb867e8..e1efbc21d0feeaafc2e5a04e6263e29391169122 100644 (file)
@@ -33,9 +33,6 @@ class ExportMspGLBase(ExportHelper):
 class ExportMspGLMeshBase(ExportMspGLBase):
        use_strips = bpy.props.BoolProperty(name="Use strips", description="Combine faces into triangle strips", default=True)
        use_degen_tris = bpy.props.BoolProperty(name="Use degen tris", description="Concatenate triangle strips with degenerate triangles", default=False)
-       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)
 
        def draw(self, context):
                self.general_col = self.layout.column()
@@ -44,14 +41,6 @@ class ExportMspGLMeshBase(ExportMspGLBase):
                col.label("Triangle strips")
                col.prop(self, "use_strips")
                col.prop(self, "use_degen_tris")
-               col.prop(self, "max_strip_len")
-
-               self.layout.separator()
-
-               col = self.layout.column()
-               col.label("Vertex cache")
-               col.prop(self, "optimize_cache")
-               col.prop(self, "cache_size")
 
 class ExportMspGLMesh(bpy.types.Operator, ExportMspGLMeshBase):
        bl_idname = "export_mesh.mspgl_mesh"