]> git.tdb.fi Git - libs/gl.git/commitdiff
Rearrange exporter controls and add the omitted export_uv property
authorMikko Rasa <tdb@tdb.fi>
Sun, 2 Sep 2012 17:18:14 +0000 (20:18 +0300)
committerMikko Rasa <tdb@tdb.fi>
Sun, 2 Sep 2012 17:18:14 +0000 (20:18 +0300)
blender/io_mspgl/__init__.py

index f43d3c01ea63f7cae545d65025f58e8256fc8a7f..cf15002b096545b2e04b8783ff790407cc075f1e 100644 (file)
@@ -58,22 +58,30 @@ class ExportMspGLMeshBase(ExportMspGLBase):
                col.prop(self, "compound")
                col.prop(self, "smoothing")
                col.prop(self, "export_groups")
+
                self.layout.separator()
+
                col = self.layout.column()
                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("Texturing")
+               col.prop(self, "export_uv")
+               col.prop(self, "tbn_vecs")
+               col.prop(self, "tbn_uvtex")
+               self.texturing_col = col
+
                self.layout.separator()
+
                col = self.layout.column()
                col.label("Vertex cache")
                col.prop(self, "optimize_cache")
                col.prop(self, "cache_size")
-               self.layout.separator()
-               col = self.layout.column()
-               col.label("TBN vectors")
-               col.prop(self, "tbn_vecs")
-               col.prop(self, "tbn_uvtex")
 
 class ExportMspGLMesh(bpy.types.Operator, ExportMspGLMeshBase):
        bl_idname = "export_mesh.mspgl_mesh"
@@ -99,9 +107,7 @@ class ExportMspGLObject(bpy.types.Operator, ExportMspGLMeshBase):
 
        def draw(self, context):
                super().draw(context)
-               self.layout.separator()
-               col = self.layout.column()
-               col.label("Texturing")
+               col = self.texturing_col
                col.prop(self, "textures")
                col.prop(self, "material_tex")