大约有 493 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0066 秒)
Laya.Handler.create和new Laya.Handler有啥区别 this.sList.mouseHandler = Laya.Handler.create(this, this.onMouse);//鼠标响应事件 this.sList.mouseHandler = new Laya.Handler(this, this.onMouse) ; // 鼠标事件响应. 2017-04-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有...
来源: Laya_社区 发布时间: 20170425
关于new Handler和handler.create的使用问题 官方文档的内存优化章节中,提到了除了使用new Handler来完成异步回调,还可以使用handler.create的方式(该方法使用了内置对象池管理),并且举了例子说明了create的好处。我想问的是,这...
来源: Laya_社区 发布时间: 20190725
为什么官网例子里,UI组件的事件都用new Handler,而资源加载用Handler.create() 为什么官网例子里,UI组件的事件都用new Handler,而资源加载用Handler.create()? 我测试了一下,如果类似于 tab.selectHandler = Laya.Handler.create(tab, this.onSelect); ...
来源: Laya_社区 发布时间: 20170818
...rText.y = 400; Laya.Tween.from(letterText,{y:100},3,Laya .Ease.backOut,new Handler(this,this.onEaseComplete),1,null,true); function onEaseComplete(){ console.log("ease complete"); Laya.stage.addChild(letterText); } ``` 以上的代码主要存在三个问题: 1. from()中的duration和delay都是以...
来源: Laya_社区 发布时间: 20180620
显卡驱动停止响应,且大概率蓝屏,原来是Handler惹的祸,但原因是什么 问题来自于 http://ask.layabox.com/question/3673 谷歌浏览器直接崩,其他浏览器的话,也是CPU很高,操作窗口卡顿厉害 原因是一个run once = true的Handler,如果再...
来源: Laya_社区 发布时间: 20170330
Laya.Handler为什么注册不成功? this.scrollView.mouseHandler = Laya.Handler.create(this,this.onScrollMouse) this.scrollView.mouseHandler = new Laya.Handler(this, this.onScrollMouse);我在scrollView中有个mouseHandler的Laya.Handler变量,想直接注册到这个变量上,但是两种...
来源: Laya_社区 发布时间: 20180814
... list.y = y; list.vScrollBarSkin = ""; list.mouseHandler = new Handler(this, onSelect) list.selectEnable = true; list.selectHandler = new Handler(this, onSelect); list.renderHandler = new Handler(this, updateItem); return list; } function...
来源: Laya_社区 发布时间: 20180724
...vaScript序行为是不一致的,求最佳实践和原理。 如果使用Handler对象则可以解决这个问题。这应该就是最佳实践吧。 这有点坑爹啊,有没有在文档醒目的位置提醒开发者啊。package { public class LayaSample { public function LayaSample() { //初...
来源: Laya_社区 发布时间: 20161213
...mport Point = Laya.Point; import Rectangle = Laya.Rectangle; import Handler = Laya.Handler; import WebGL = Laya.WebGL; export class TiledMap_IsometricWorld { private tiledMap: TiledMap; private layer: MapLayer; private sprite: Sprite; construct...
来源: Laya_社区 发布时间: 20201230
...props 变化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。 update这个 数值改变就会触发回调,也就是过程中的回调 2018-01-09 0 1 分享 微博 QZONE 微信 kezhiyu 赞同来自: let a = new...
来源: Laya_社区 发布时间: 20180109