动画组合

只需要在不同的管道播放就可以了
this.player.getComponent(sp.Skeleton).setAnimation(0, “sheji1”, false);
this.player.getComponent(sp.Skeleton).setAnimation(1, “run2”, true);

动画经常卡死

经常会遇到切换动画时候卡死, 只要在设置播放完毕回调时候加上name, 对应那个动画就可以完美避开动画切换的卡死现象了。
this.player.getComponent(sp.Skeleton).setAnimation(0, “sheji1”, false);
this.player.getComponent(sp.Skeleton).setAnimation(1, “run2”, true);
this.sheji_num–;
this.player.getComponent(sp.Skeleton).setCompleteListener((trackEntry, loopCount) => {
let name: any = trackEntry.animation.name ? trackEntry.animation.name : “”;
if (name === “sheji1”) {
this.changedh();
}

})

Logo

这里是一个专注于游戏开发的社区,我们致力于为广大游戏爱好者提供一个良好的学习和交流平台。我们的专区包含了各大流行引擎的技术博文,涵盖了从入门到进阶的各个阶段,无论你是初学者还是资深开发者,都能在这里找到适合自己的内容。除此之外,我们还会不定期举办游戏开发相关的活动,让大家更好地交流互动。加入我们,一起探索游戏开发的奥秘吧!

更多推荐