Animation: Allow NLA strips to be horizontally shuffled #105532

Merged
Nate Rupsis merged 22 commits from nrupsis/blender:NLA-horizontal-shuffle into main 2023-04-03 17:10:50 +02:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 0c5487a7ed - Show all commits

View File

@ -1984,7 +1984,7 @@ void BKE_nla_validate_state(AnimData *adt)
/* Adjust blending values for auto-blending,
* and also do an initial pass to find the earliest strip. */
for (nlt = adt->nla_tracks.first; nlt; nlt = nlt->next) {
LISTBASE_FOREACH_MUTABLE (ListBase *, strip, &nlt->strips) {
LISTBASE_FOREACH_MUTABLE (NlaStrip *, strip, &nlt->strips) {
nlastrip_validate_transition_start_end(strip);