You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ReNimNode/production/node_mapping.py
+27Lines changed: 27 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -79,6 +79,15 @@ class NODE_BONE(Node):
79
79
subtype="XYZ",
80
80
default=[0.0, 0.0, 0.0]
81
81
)
82
+
mix_mode: bpy.props.EnumProperty(
83
+
name="Mix Mode",
84
+
description="Specify how the copied and existing transformations are combined",
85
+
items=[
86
+
("BEFORE", "Before Original", "Apply copied transformation before original, as if the constraint target is a parent. Scale is handled specially to avoid creating shear"),
87
+
("AFTER", "After Original", "Apply copied transformation after original, as if the constraint target is a child. Scale is handled specially to avoid creating shear")
0 commit comments