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/utils/layers.py')
-rw-r--r--rigify/utils/layers.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/rigify/utils/layers.py b/rigify/utils/layers.py
index bc5a8c56..27c67f0b 100644
--- a/rigify/utils/layers.py
+++ b/rigify/utils/layers.py
@@ -157,6 +157,12 @@ class ControlLayersOption:
ControlLayersOption.FK = ControlLayersOption('fk', description="Layers for the FK controls to be on")
ControlLayersOption.TWEAK = ControlLayersOption('tweak', description="Layers for the tweak controls to be on")
+ControlLayersOption.EXTRA_IK = ControlLayersOption(
+ 'extra_ik', toggle_default=False,
+ toggle_name="Extra IK Layers",
+ description="Layers for the optional IK controls to be on",
+)
+
# Layer parameters used by the super_face rig.
ControlLayersOption.FACE_PRIMARY = ControlLayersOption('primary', description="Layers for the primary controls to be on")
ControlLayersOption.FACE_SECONDARY = ControlLayersOption('secondary', description="Layers for the secondary controls to be on")