[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [27311] trunk/blender/release/scripts/ui: Restore iTaSC UI.

Benoit Bolsee benoit.bolsee at online.be
Sun Mar 7 10:53:59 CET 2010


Revision: 27311
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=27311
Author:   ben2610
Date:     2010-03-07 10:53:59 +0100 (Sun, 07 Mar 2010)

Log Message:
-----------
Restore iTaSC UI.

Modified Paths:
--------------
    trunk/blender/release/scripts/ui/properties_data_bone.py
    trunk/blender/release/scripts/ui/properties_object_constraint.py

Modified: trunk/blender/release/scripts/ui/properties_data_bone.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_data_bone.py	2010-03-07 09:23:57 UTC (rev 27310)
+++ trunk/blender/release/scripts/ui/properties_data_bone.py	2010-03-07 09:53:59 UTC (rev 27311)
@@ -257,6 +257,9 @@
         pchan = ob.pose.bones[bone.name]
         wide_ui = context.region.width > narrowui
 
+        row = layout.row()
+        row.prop(ob.pose, "ik_solver")
+
         split = layout.split(percentage=0.25)
         split.prop(pchan, "ik_dof_x", text="X")
         split.active = pchan.has_ik

Modified: trunk/blender/release/scripts/ui/properties_object_constraint.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_object_constraint.py	2010-03-07 09:23:57 UTC (rev 27310)
+++ trunk/blender/release/scripts/ui/properties_object_constraint.py	2010-03-07 09:53:59 UTC (rev 27311)
@@ -97,12 +97,12 @@
 
         split = layout.split(percentage=0.33)
         col = split.column()
-        col.prop(con, "tail")
-        col.prop(con, "stretch")
+        col.prop(con, "use_tail")
+        col.prop(con, "use_stretch")
 
         col = split.column()
         col.prop(con, "chain_length")
-        col.prop(con, "targetless")
+        col.prop(con, "use_target")
 
     def CHILD_OF(self, context, layout, con, wide_ui):
         self.target_template(layout, con, wide_ui)
@@ -205,10 +205,10 @@
         row.label(text="Axis Ref:")
         row.prop(con, "axis_reference", expand=True)
         split = layout.split(percentage=0.33)
-        split.row().prop(con, "position")
+        split.row().prop(con, "use_position")
         row = split.row()
         row.prop(con, "weight", text="Weight", slider=True)
-        row.active = con.position
+        row.active = con.use_position
         split = layout.split(percentage=0.33)
         row = split.row()
         row.label(text="Lock:")
@@ -219,7 +219,7 @@
         split.active = con.use_position
 
         split = layout.split(percentage=0.33)
-        split.row().prop(con, "rotation")
+        split.row().prop(con, "use_rotation")
         row = split.row()
         row.prop(con, "orient_weight", text="Weight", slider=True)
         row.active = con.use_rotation





More information about the Bf-blender-cvs mailing list