X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=blender%2Fio_mspgl%2F__init__.py;h=11a22e9f4ff992be980f29bceb0732866e2c0b6d;hp=899bdcedd434738708eb5b13cfbde0386cd56b16;hb=35f3540e50fdb9f45cd8e53cbe131610aa030a68;hpb=d5b484e2aee6c485abd4d07631f6d863eaaa90a0 diff --git a/blender/io_mspgl/__init__.py b/blender/io_mspgl/__init__.py index 899bdced..11a22e9f 100644 --- a/blender/io_mspgl/__init__.py +++ b/blender/io_mspgl/__init__.py @@ -69,8 +69,6 @@ class ExportMspGLObject(bpy.types.Operator, ExportMspGLMeshBase): filename_ext = ".object" - external_tech = bpy.props.BoolProperty(name="External technique", description="Use an external technique specified in the object's properties", default=True) - textures = bpy.props.EnumProperty(name="Textures", description="Export textures", default="REF", items=(("NONE", "None", "Ignore textures"), ("REF", "Referenced", "Reference external data"), @@ -91,7 +89,6 @@ class ExportMspGLObject(bpy.types.Operator, ExportMspGLMeshBase): super().draw(context) col = self.general_col - col.prop(self, "external_tech") col.prop(self, "export_lods") col.prop(self, "textures") col.separator() @@ -123,7 +120,6 @@ class ExportMspGLScene(bpy.types.Operator, ExportMspGLBase): filename_ext = ".scene" - external_tech = bpy.props.BoolProperty(name="External techniques", description="Use external techniques specified in objects' properties", default=True) resource_collection = bpy.props.BoolProperty(name="Resource collection", description="Put resources to a single collection file", default=True) def create_exporter(self):