X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=blender%2Fio_mspgl%2Fproperties.py;h=f6de7a36acdb543fa6b2446eb28d08b8e14f32db;hp=dcc8cc34d55a81b0fd38c16c9bf43a6f6dca5add;hb=169057d48d44846bc433753f20ee884204be9192;hpb=637ef260fadf4f99bccd70651d30d7440e839861 diff --git a/blender/io_mspgl/properties.py b/blender/io_mspgl/properties.py index dcc8cc34..f6de7a36 100644 --- a/blender/io_mspgl/properties.py +++ b/blender/io_mspgl/properties.py @@ -11,8 +11,10 @@ class MspGLProperties(bpy.types.Panel): obj = context.active_object self.layout.prop(obj, "technique"); + self.layout.prop(obj, "inherit_tech"); self.layout.prop(obj, "compound"); 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.compound = bpy.props.BoolProperty(name="Compound with parent", description="Join this object to its parent when exporting")