likunhan 发表于 2013-3-21 13:19

求助:U3D中动画队列播放的问题

如题,Animation.PlayQueued 或Animation.CrossFadeQueued,始终没弄明白动画队列播放的问题。比如我想在某条件下按顺序播放3个动画,第1个播完接着播第2个,以此类推。
JS代码:
if (Input.GetButtonDown ("Jump"))
{
animation.Play("name1");
animation.PlayQueued("name2", QueueMode.CompleteOthers );
animation.PlayQueued("name3", QueueMode.CompleteOthers );
}
或:
if (Input.GetButtonDown ("Jump"))
{
animation.Play("name1");
animation.PlayQueued("name2", QueueMode.PlayNow );
animation.PlayQueued("name3", QueueMode.CompleteOthers );
}
之类。尝试好久,出不来效果。求高人指点,不胜感激!

Mr._chen。 发表于 2017-2-13 17:22

很不错

artist66 发表于 2017-2-13 17:25

楼主是超人

黑土豆。。。 发表于 2017-2-13 18:11

好帖就是要顶

游卧云端 发表于 2017-2-13 17:23

说的非常好

angel29hao 发表于 2017-2-13 17:55

很好哦

雪白的肚皮 发表于 2017-3-29 19:56

楼主是超人

lezhengyi 发表于 2017-3-29 20:06

顶顶多好

1057834200 发表于 2017-3-29 20:13

真心顶

lilili 发表于 2017-3-29 20:00

很好哦
页: [1] 2 3 4 5 6 7 8 9 10
查看完整版本: 求助:U3D中动画队列播放的问题