X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=blender%2Fio_mspgl%2Fproperties.py;h=30aed9a906187bf132c6319a590893e01fd07ecd;hb=3657f20f4d1ce6f998bea46144cea52317cff1d9;hp=dcc8cc34d55a81b0fd38c16c9bf43a6f6dca5add;hpb=1bad86b461abd4fe2a1cb1c6c5685adf5db13935;p=libs%2Fgl.git diff --git a/blender/io_mspgl/properties.py b/blender/io_mspgl/properties.py index dcc8cc34..30aed9a9 100644 --- a/blender/io_mspgl/properties.py +++ b/blender/io_mspgl/properties.py @@ -11,8 +11,18 @@ class MspGLProperties(bpy.types.Panel): obj = context.active_object self.layout.prop(obj, "technique"); + self.layout.prop(obj, "inherit_tech"); + if obj.inherit_tech: + self.layout.prop(obj, "override_material"); self.layout.prop(obj, "compound"); + self.layout.prop(obj, "lod_for_parent") + if obj.lod_for_parent: + self.layout.prop(obj, "lod_index") def register_properties(): 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) bpy.types.Object.compound = bpy.props.BoolProperty(name="Compound with parent", description="Join this object to its parent when exporting") + bpy.types.Object.lod_for_parent = bpy.props.BoolProperty(name="LoD for parent", description="This object is a level of detail for its parent") + bpy.types.Object.lod_index = bpy.props.IntProperty(name="LoD index", description="Index of the level of detail", min=1, default=1)