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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-06-28 15:59:50 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-06-28 16:03:24 +0300
commit533e267e95cf1115eebde95a67dc3b05d48e6ffd (patch)
tree8ac4243c1042fa9e3678e4ae17e053a4c3b70101 /release/scripts/startup/bl_ui/properties_constraint.py
parentf5e0ae655e5182de3ee9cfedfbdc2a20f9b047fb (diff)
Remove Sticky option from the Floor constraint
This option from the very beginning of its existence needed more work to make it work correct and this was never done. This option was working fine during continuous playback, when there are no skipped frames, but it was failing when AV-sync of framedrop was enabled. It was never working correct when jumping between frames, including rendering on a farm which usually does frame-range based rendering. With copy-on-write things became even more tricky, since the "stuck" flag was never preserved between re-evaluations. Fixes T65683: Sticky Option in Floor Constraint for Bones Not Working
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_constraint.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_constraint.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/properties_constraint.py b/release/scripts/startup/bl_ui/properties_constraint.py
index 888a3a856e6..6fa953574cb 100644
--- a/release/scripts/startup/bl_ui/properties_constraint.py
+++ b/release/scripts/startup/bl_ui/properties_constraint.py
@@ -548,10 +548,7 @@ class ConstraintButtonsPanel:
def FLOOR(self, _context, layout, con):
self.target_template(layout, con)
- row = layout.row()
- row.prop(con, "use_sticky")
- row.prop(con, "use_rotation")
-
+ layout.prop(con, "use_rotation")
layout.prop(con, "offset")
row = layout.row()