From 6e42e65cb070ef86ea748423a1c6e0a59a937958 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sun, 2 Sep 2012 20:18:14 +0300 Subject: [PATCH] Rearrange exporter controls and add the omitted export_uv property --- blender/io_mspgl/__init__.py | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/blender/io_mspgl/__init__.py b/blender/io_mspgl/__init__.py index f43d3c01..cf15002b 100644 --- a/blender/io_mspgl/__init__.py +++ b/blender/io_mspgl/__init__.py @@ -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") -- 2.43.0