We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c46a04f commit e354c81Copy full SHA for e354c81
1 file changed
release/scripts/mgear/core/anim_utils.py
@@ -1146,11 +1146,14 @@ def _get_mth(name):
1146
_all_controls.extend(foot_fk)
1147
1148
# if already keyframe we always set keyframes
1149
- if not key:
1150
- for c in _all_controls:
1151
- if pm.keyframe(c, query=True, keyframeCount=True):
1152
- key = True
1153
- break
+ # Comment out:
+ # The behavior wasn't clear for user. So now is removed and the user must
+ # keyframe or use + key option
+ # if not key:
+ # for c in _all_controls:
1154
+ # if pm.keyframe(c, query=True, keyframeCount=True):
1155
+ # key = True
1156
+ # break
1157
1158
if key:
1159
[
0 commit comments