[]Laya.Handler.create和new Laya.Handler有啥区别
this.sList.mouseHandler = Laya.Handler.create(this, this.onMouse);//鼠标响应事件
this.sList.mouseHandler = new Laya.Handler(this, this.onMouse) ; // 鼠标事件响应.
this.sList.mouseHandler = new Laya.Handler(this, this.onMouse) ; // 鼠标事件响应.
没有找到相关结果
已邀请:
要回复问题请先登录
2 个回复
cuixueying
赞同来自: gx389589802 、ldp6394721
2、new Handler,通过new的方式创建,不会自动回收,每次的鼠标事件行为都会触发一次new Handler
gx389589802
赞同来自: