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.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/rigify/utils/layers.py b/rigify/utils/layers.py
index 1f65863d..bc5a8c56 100644
--- a/rigify/utils/layers.py
+++ b/rigify/utils/layers.py
@@ -160,3 +160,16 @@ ControlLayersOption.TWEAK = ControlLayersOption('tweak', description="Layers for
# 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")
+
+# Layer parameters used by the skin rigs
+ControlLayersOption.SKIN_PRIMARY = ControlLayersOption(
+ 'skin_primary', toggle_default=False,
+ toggle_name="Primary Control Layers",
+ description="Layers for the primary controls to be on",
+)
+
+ControlLayersOption.SKIN_SECONDARY = ControlLayersOption(
+ 'skin_secondary', toggle_default=False,
+ toggle_name="Secondary Control Layers",
+ description="Layers for the secondary controls to be on",
+)