天天看點

【Cocos Creator技巧】Cocos Creator播放動畫後,怎麼重置動畫

var anim = this.getComponent(cc.Animation);
//播放動畫
anim.play('動畫名')

//重置動畫
this.anim.setCurrentTime(0)
this.anim.stop()
           

繼續閱讀