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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Gavrilov <angavrilov@gmail.com>2019-05-08 12:08:54 +0300
committerAlexander Gavrilov <angavrilov@gmail.com>2019-05-08 12:17:00 +0300
commit27b9a0cd670ff1dabe031596cef76908df76c3c8 (patch)
tree4ba6661dc88dc9667dbd1a993a2653904c746d5b /release/scripts/startup/bl_ui/properties_constraint.py
parent08012ebeec74baa6037c88c7c75de0962e4a1b74 (diff)
Copy Scale: support raising the copied scale to an arbitrary power.
Since scale is multiplicative, the appropriate way to partially copy it is to use power. However, the influence slider of constraints uses linear interpolation. Thus, there is no way to correctly split scale via constraints without adding this feature. In addition, this allows inverting scale by using negative powers, fulfilling the function of Copy Rotation's Invert checkboxes.
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_constraint.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_constraint.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_constraint.py b/release/scripts/startup/bl_ui/properties_constraint.py
index 310d35c6179..c972ce04cdf 100644
--- a/release/scripts/startup/bl_ui/properties_constraint.py
+++ b/release/scripts/startup/bl_ui/properties_constraint.py
@@ -430,6 +430,8 @@ class ConstraintButtonsPanel:
row.prop(con, "use_y", text="Y")
row.prop(con, "use_z", text="Z")
+ layout.prop(con, "power")
+
row = layout.row()
row.prop(con, "use_offset")
row = row.row()