@abuki From your comments on what you consider correct I assume that you have a misconception about how SetEmptyAnimation
shall be used for mixing in and mixing out.
If you take a look at the SetEmptyAnimation documentation you can see:
Mixing out is done by setting an empty animation with a mix duration using either setEmptyAnimation
, setEmptyAnimations
, or addEmptyAnimation
. [..] A mix duration of 0 still mixes out over one frame.
[..]
Mixing in is done by first setting an empty animation, then adding an animation using addAnimation with the desired delay (an empty animation has a duration of 0) and on the returned track entry, set the MixDuration
.
Now from your line saying:
If Update(0) is called, the new animation is set directly but not progressing time up until 0.2s delay - this is wrong, why?
If no animation is set on the track, no mixing-in happens, animations are just played normally.
You first set the empty animation on the track with mixDuration 0 which mixes out the main animation over one frame. Then you're allowing multiple calls to Update
happen, but want to receive mixing-in on the subsequent call to AddAnimation
. Note that to mix in you need to immediately queue the empty animation before the animation, or have another animation playing on the track already.
The corner-case is the two frames where the empty animation stays on the track due to first mixing out the main animation for one frame (the first Update(0)
or yield statement), then updating again to advance the <empty> track entry for a frame to discard it next Update. But before the next (3rd) Update, you're calling AddAnimation
when the empty animation is still there, so you receive mixing-in. With the additional Update(0)
call the empty animation is already removed before adding new animations.
In other words: the <empty> animation does not stay on the track, it is removed one frame after mixing out or after mixing in is finished. And if no animation (empty or other animation) is on a track, no mixing-in will happen. If you want mixing-in, you need to call SetEmptyAnimation
without letting several frames pass.
I hope this makes sense and is not too confusing.