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