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:
authorSebastian Parborg <darkdefende@gmail.com>2021-05-20 21:41:10 +0300
committerSebastian Parborg <darkdefende@gmail.com>2021-05-20 21:41:10 +0300
commit6a0906c09a263f5fb17449407f5988c4bda53436 (patch)
treed55bdb234e197bb51598d2aad6bf346d55862d24 /release
parent2e7d3ad7b51bbc05cdcbbc3c055f961f3a2c28a8 (diff)
Fix T87854: Add clamp option to Path Animation
Previously, the "follow path constraint" and "follow parented curve" were clamped. This restriction was lifted in rBcf2baa585cc8 Add back an option to get the old behavior in the "Path animation" settings. Reviewed By: Sybren Differential Revision: http://developer.blender.org/D11263
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_curve.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_curve.py b/release/scripts/startup/bl_ui/properties_data_curve.py
index 4bd2d66e257..85f672cd50f 100644
--- a/release/scripts/startup/bl_ui/properties_data_curve.py
+++ b/release/scripts/startup/bl_ui/properties_data_curve.py
@@ -267,6 +267,7 @@ class DATA_PT_pathanim(CurveButtonsPanelCurve, Panel):
# these are for paths only
col.separator()
+ col.prop(curve, "use_path_clamp")
col.prop(curve, "use_path_follow")