Fix #115978: FCurve extrapolation ignored in NLA. #116382

Merged
Nate Rupsis merged 2 commits from nrupsis/blender:115978-3_6LTS-NLA-Fcurve-extrapolate into blender-v3.6-release 2024-01-11 18:44:54 +01:00
1 changed files with 1 additions and 1 deletions

View File

@ -3264,7 +3264,7 @@ static void animsys_create_action_track_strip(const AnimData *adt,
/* Must set NLASTRIP_FLAG_USR_INFLUENCE, or else the default setting overrides, and influence
* doesn't work.
*/
r_action_strip->flag |= NLASTRIP_FLAG_USR_INFLUENCE;
r_action_strip->flag |= NLASTRIP_FLAG_USR_INFLUENCE | NLASTRIP_FLAG_NO_TIME_MAP;
const bool tweaking = (adt->flag & ADT_NLA_EDIT_ON) != 0;
const bool soloing = (adt->flag & ADT_NLA_SOLO_TRACK) != 0;