Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2009-12-30 13:29:26 +0300
committerJoshua Leung <aligorith@gmail.com>2009-12-30 13:29:26 +0300
commita4913896b8f42be9bdde6ebc320a4955578a8f9e (patch)
treef1b5d92f9ed4b7a794267398702a593c0c24e341
parent35d629c97b9debd28378c8872ad5975d19f93420 (diff)
Floor Constraint: Evaluation space options are now available for this constraint too
-rw-r--r--release/scripts/ui/properties_object_constraint.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/ui/properties_object_constraint.py b/release/scripts/ui/properties_object_constraint.py
index 12a12ff40dc..6bff8d6d727 100644
--- a/release/scripts/ui/properties_object_constraint.py
+++ b/release/scripts/ui/properties_object_constraint.py
@@ -37,8 +37,6 @@ class ConstraintButtonsPanel(bpy.types.Panel):
# match enum type to our functions, avoids a lookup table.
getattr(self, con.type)(context, box, con, wide_ui)
- # show/key buttons here are most likely obsolete now, with
- # keyframing functionality being part of every button
if con.type not in ('RIGID_BODY_JOINT', 'SPLINE_IK', 'NULL'):
box.prop(con, "influence")
@@ -562,6 +560,8 @@ class ConstraintButtonsPanel(bpy.types.Panel):
if wide_ui:
row.label(text="Min/Max:")
row.prop(con, "floor_location", expand=True)
+
+ self.space_template(layout, con, wide_ui)
def RIGID_BODY_JOINT(self, context, layout, con, wide_ui):
self.target_template(layout, con, wide_ui)