动画回调监听
const {ccclass, property} = cc.decorator

@ccclass
export default class NewClass extends cc.Compont{
    @property(cc.Animation)
    animation:cc.Animation = null
    
    onLoad(){
        let animation = this.animation
        animation.on("play",this.onPlay,this)
        //stop lastframe finished pause resume
        //off 在onDestroy 关闭监听
    }
}

首页 我的博客
粤ICP备17103704号