Animation: At the boundary frame between non-muted NLA strips, evaluate the first frame of the later strip instead of the last frame of the earlier. #113487

Open
Paolo Amadini wants to merge 1 commits from pamadini/blender:nla-adjacent-strips into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
Contributor

Problem
When a strip immediately follows another on the same track, the first frame of the second strip should be evaluated, instead of the last frame of the first strip. The former is also how looping strips are currently handled.

Source of the Problem
This is a historic issue and not the result of intentional design. It is caused by the loop in anim_sys.cc (formerly anim_sys.c) stopping as soon as it finds a strip in range.

Solution
In nlastrips_ctime_get_strip, if we are exactly at the last frame of the clip, we look ahead to see if a non-muted strip immediately follows and use it instead.

The code is simplified because strips can't overlap, so we don't have to check whether we actually are at the last frame. We also don't need to care about the NLASTRIP_FLAG_NO_TIME_MAP case because when the flag is set there is only one strip in the list provided to the function, as animsys_create_tweak_strip is always followed by nlastrips_ctime_get_strip_single.

Test File
The CubeAction runs from frames 1 to 4, with the X Location being the same as the frame number.
Starting at frame 1 there are two consecutive instances, CubeAction and CubeAction.001.
Starting at frame 11 there is a single instance that is looped twice, CubeAction.002.

Expected result: At frame 4 the cube should be at X Location "1", which is the same as the looping case at frame 14.
Actual result before the patch: At frame 4 the cube is at X Location "4".

**Problem** When a strip immediately follows another on the same track, the first frame of the second strip should be evaluated, instead of the last frame of the first strip. The former is also how looping strips are currently handled. **Source of the Problem** This is a historic issue and not the result of intentional design. It is caused by the loop in `anim_sys.cc` (formerly `anim_sys.c`) stopping as soon as it finds a strip in range. **Solution** In `nlastrips_ctime_get_strip`, if we are exactly at the last frame of the clip, we look ahead to see if a non-muted strip immediately follows and use it instead. The code is simplified because strips can't overlap, so we don't have to check whether we actually are at the last frame. We also don't need to care about the `NLASTRIP_FLAG_NO_TIME_MAP` case because when the flag is set there is only one strip in the list provided to the function, as `animsys_create_tweak_strip` is always followed by `nlastrips_ctime_get_strip_single`. **Test File** The CubeAction runs from frames 1 to 4, with the X Location being the same as the frame number. Starting at frame 1 there are two consecutive instances, CubeAction and CubeAction.001. Starting at frame 11 there is a single instance that is looped twice, CubeAction.002. **Expected result:** At frame 4 the cube should be at X Location "1", which is the same as the looping case at frame 14. **Actual result before the patch:** At frame 4 the cube is at X Location "4".
Paolo Amadini added 1 commit 2023-10-10 13:12:52 +02:00
4a686008c7 Animation: At the boundary frame between non-muted NLA strips, evaluate the
first frame of the later strip instead of the last frame of the earlier.
Iliya Katushenock added this to the Animation & Rigging project 2023-10-10 13:13:11 +02:00
Paolo Amadini requested review from Nathan Vegdahl 2023-10-10 13:13:23 +02:00
Merge conflict checking is in progress. Try again in few moments.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u nla-adjacent-strips:pamadini-nla-adjacent-strips
git checkout pamadini-nla-adjacent-strips
Sign in to join this conversation.
No reviewers
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#113487
No description provided.