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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'rigify/rigs/limbs/ui.py')
-rw-r--r--rigify/rigs/limbs/ui.py22
1 files changed, 14 insertions, 8 deletions
diff --git a/rigify/rigs/limbs/ui.py b/rigify/rigs/limbs/ui.py
index f04eb891..952fbca4 100644
--- a/rigify/rigs/limbs/ui.py
+++ b/rigify/rigs/limbs/ui.py
@@ -26,11 +26,14 @@ if is_selected( controls ):
props.hand_ik = controls[4]
props.pole = pole
props.main_parent = parent
- props = layout.operator("rigify.rotation_pole", text="Switch Rotation-Pole")
+ props = layout.operator("pose.rigify_rot2pole_" + rig_id, text="Switch Rotation-Pole")
props.bone_name = controls[1]
- props.window = "CURRENT"
- props.toggle = True
- props.bake = False
+ props.limb_type = "arm"
+ props.controls = str(controls)
+ props.ik_ctrl = str(ik_ctrl)
+ props.fk_ctrl = str(fk_ctrl)
+ props.parent = str(parent)
+ props.pole = str(pole)
# BBone rubber hose on each Respective Tweak
@@ -81,11 +84,14 @@ if is_selected( controls ):
props.footroll = controls[5]
props.mfoot_ik = ik_ctrl[2]
props.main_parent = parent
- props = layout.operator("rigify.rotation_pole", text="Toggle Rotation and Pole")
+ props = layout.operator("pose.rigify_rot2pole_" + rig_id, text="Toggle Rotation and Pole")
props.bone_name = controls[1]
- props.window = "CURRENT"
- props.toggle = True
- props.bake = False
+ props.limb_type = "leg"
+ props.controls = str(controls)
+ props.ik_ctrl = str(ik_ctrl)
+ props.fk_ctrl = str(fk_ctrl)
+ props.parent = str(parent)
+ props.pole = str(pole)
# BBone rubber hose on each Respective Tweak
for t in tweaks: