X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=blender%2Fio_mspgl%2Fproperties.py;h=129b02e64829b125cd5ffe76e2a4f93b112d0f1d;hp=30aed9a906187bf132c6319a590893e01fd07ecd;hb=bc2fe1bd3e167fd8eed05f9ffeda3c255f445f70;hpb=fbd600202a0d935381132f24c8dafa7b6093b596 diff --git a/blender/io_mspgl/properties.py b/blender/io_mspgl/properties.py index 30aed9a9..129b02e6 100644 --- a/blender/io_mspgl/properties.py +++ b/blender/io_mspgl/properties.py @@ -1,6 +1,22 @@ import bpy -class MspGLProperties(bpy.types.Panel): +class MspGLMeshProperties(bpy.types.Panel): + bl_idname = "MESH_PT_mspgl_properties" + bl_label = "MspGL properties" + bl_space_type = "PROPERTIES" + bl_region_type = "WINDOW" + bl_context = "data" + + @classmethod + def poll(cls, context): + return context.active_object.type=="MESH" + + def draw(self, context): + mesh = context.active_object.data + + self.layout.prop(mesh, "winding_test") + +class MspGLObjectProperties(bpy.types.Panel): bl_idname = "OBJECT_PT_mspgl_properties" bl_label = "MspGL properties" bl_space_type = "PROPERTIES" @@ -20,6 +36,7 @@ class MspGLProperties(bpy.types.Panel): self.layout.prop(obj, "lod_index") def register_properties(): + bpy.types.Mesh.winding_test = bpy.props.BoolProperty(name="Winding test", description="Perform winding test to skip back faces") bpy.types.Object.technique = bpy.props.StringProperty(name="Technique", description="Name of the technique to use for rendering") bpy.types.Object.inherit_tech = bpy.props.BoolProperty(name="Inherit technique", description="Inherit from the technique to customize textures") bpy.types.Object.override_material = bpy.props.BoolProperty(name="Override material", description="Override material in the inherited texture as well", default=True)