183*****755
this.m_Effect = Laya.Sprite3D.load(url);
this.m_Effect.on(Laya.Event.PLAYED, this, function(){
console.log("PLAYED callback!!");
})
this.m_Effect.on(Laya.Event.PAUSED, this, function(){
console.log("PAUSED callback!!");
})
this.m_Effect.on(Laya.Event.COMPLETE, this, function(){
console.log("COMPLETE callback!!");
})
this.m_Effect.on(Laya.Event.STOPPED, this, function(){
console.log("STOPPED callback!!");
})
代码如上没有一个事件能走到。是否粒子使用有问题?