Revision: 32663
          
http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=32663
Author:   campbellbarton
Date:     2010-10-23 12:06:40 +0200 (Sat, 23 Oct 2010)

Log Message:
-----------
rename rna property Bone.use_hinge to use_inherit_rotate because use_hinge was 
inverted - Enabled by default but not a hinge.
this also matches 'use_inherit_scale'

Modified Paths:
--------------
    trunk/blender/release/scripts/op/animsys_update.py
    trunk/blender/release/scripts/ui/properties_data_bone.py
    trunk/blender/source/blender/makesrna/intern/rna_armature.c

Modified: trunk/blender/release/scripts/op/animsys_update.py
===================================================================
--- trunk/blender/release/scripts/op/animsys_update.py  2010-10-23 04:18:53 UTC 
(rev 32662)
+++ trunk/blender/release/scripts/op/animsys_update.py  2010-10-23 10:06:40 UTC 
(rev 32663)
@@ -367,6 +367,7 @@
     ("PoseBone", "ik_limit_z", "use_ik_limit_z"),
     ("PoseBone", "ik_lin_control", "use_ik_linear_control"),
     ("PoseBone", "ik_rot_control", "use_ik_rotation_control"),
+    ("Bone", "use_hinge", "use_inherit_rotate"),
     ("SPHFluidSettings", "spring_k", "spring_force"),
     ("SPHFluidSettings", "stiffness_k", "stiffness"),
     ("SPHFluidSettings", "stiffness_knear", "stiffness_near"),

Modified: trunk/blender/release/scripts/ui/properties_data_bone.py
===================================================================
--- trunk/blender/release/scripts/ui/properties_data_bone.py    2010-10-23 
04:18:53 UTC (rev 32662)
+++ trunk/blender/release/scripts/ui/properties_data_bone.py    2010-10-23 
10:06:40 UTC (rev 32663)
@@ -163,7 +163,7 @@
         sub = col.column()
         sub.active = (bone.parent is not None)
         sub.prop(bone, "use_connect")
-        sub.prop(bone, "use_hinge", text="Inherit Rotation")
+        sub.prop(bone, "use_inherit_rotate", text="Inherit Rotation")
         sub.prop(bone, "use_inherit_scale", text="Inherit Scale")
         sub = col.column()
         sub.active = (not bone.parent or not bone.use_connect)

Modified: trunk/blender/source/blender/makesrna/intern/rna_armature.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_armature.c 2010-10-23 
04:18:53 UTC (rev 32662)
+++ trunk/blender/source/blender/makesrna/intern/rna_armature.c 2010-10-23 
10:06:40 UTC (rev 32663)
@@ -414,7 +414,7 @@
        RNA_def_property_ui_text(prop, "Connected", "When bone has a parent, 
bone's head is struck to the parent's tail");
        RNA_def_property_update(prop, 0, "rna_Armature_update_data");
        
-       prop= RNA_def_property(srna, "use_hinge", PROP_BOOLEAN, PROP_NONE);
+       prop= RNA_def_property(srna, "use_inherit_rotate", PROP_BOOLEAN, 
PROP_NONE);
        RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", BONE_HINGE);
        RNA_def_property_ui_text(prop, "Inherit Rotation", "Bone inherits 
rotation or scale from parent bone");
        RNA_def_property_update(prop, 0, "rna_Armature_update_data");


_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to