- 已编辑
高轨道对低轨道没有进行混合
尽管我设置了混合时间...
TrackEntry setAnim = sk.AnimationState.SetAnimation(1, "walk", true);
setAnim.MixDuration = 0.5f;
我这么写是否有错误?
我使用的spine运行库是4.1版本.
我想你要找的是 TrackEntry alpha 。
MixDuration是用来在同一轨道上混合前一个动画和下一个动画的。另一方面,为高层track设置TrackEntry alpha可使其与下面的轨道混合。例如,track 0可以有一个行走动画,track 1可以有一个跛行动画。当玩家受伤时,track 1的alpha值会增加,跛行会加重。
I assume what you are looking for is TrackEntry alpha.
MixDuration is used to mix the previous animation and next animation on the same track. On the other hand, setting the TrackEntry alpha for a higher track allows it to mix with the tracks below it. For example, track 0 could have a walk animation and track 1 could have a limp animation. The alpha for track 1 is increased as the player takes damage, so they limp more and more.
我说的是高层TrackEntry 对低层TrackEntry 的MixDuration, 而不是alpha.
有没有办法在不同的轨道之间过渡混合? 就像在spine编辑器中那样.
I'm talking about the MixDuration of high level TrackEntry to low level TrackEntry, not alpha.
Is there no way to transition the mix between the different tracks? Just like in the spine editor.
我已经测试过,在unity的时间轴中,高级track可以与低级track混合。但在脚本代码中不可以。
I have tested that the advanced track can be mixed with the lower track in the Unity timeline. But not in script code.
我想在unity中实现上面这张图中的过渡效果. 请问我该如何怎么做?
I'm talking about the MixDuration of high level TrackEntry to low level TrackEntry, not alpha.
Is there no way to transition the mix between the different tracks?
Mixing between animations on the same track is done using TrackEntry mixDuration
.
Mixing between animations on different tracks is done using TrackEntry alpha
. If you want the alpha
to change over time, you will need to adjust the value yourself.
There is another way to do it, which is to play an empty animation. See AnimationState addEmptyAnimation
. You can play an empty animation, mix to another animation, then mix out to an empty animation. When you do this on a higher track, the result is that you'll see the lower track animation, the higher animation will "fade in" over the lower track animation, then will "fade out" again.
同一轨道上的动画之间的混合是使用 TrackEntry mixDuration
完成的。
不同轨道上的动画之间的混合是使用 TrackEntry alpha
完成的。 如果您希望 alpha
随时间变化,则需要自行调整该值。
还有另一种方法,就是播放空动画。 请参见 AnimationState addEmptyAnimation
。 您可以播放一个空动画,混合到另一个动画,然后混合到一个空动画。 当您在较高的轨道上执行此操作时,结果是您将看到较低的轨道动画,较高的动画将“淡入”在较低的轨道动画上,然后再次“淡出”。
Great! Solved my problem! The last way is the best!
Cheers! :beer: