• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 736 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0051 秒)

1. Laya.Handler.create和new Laya.Handler有啥区别 [ 100%]

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

2. 关于new Handlerhandler.create的使用问题 [ 99%]

关于new Handlerhandler.create的使用问题 官方文档的内存优化章节中,提到了除了使用new Handler来完成异步回调,还可以使用handler.create的方式(该方法使用了内置对象池管理),并且举了例子说明了create的好处。我想问的是,这...

来源: Laya_社区 发布时间: 20190725

3. 为什么官网例子里,UI组件的事件都用new Handler,而资源加载用Handler.create() [ 98%]

为什么官网例子里,UI组件的事件都用new Handler,而资源加载用Handler.create() 为什么官网例子里,UI组件的事件都用new Handler,而资源加载用Handler.create()? 我测试了一下,如果类似于 tab.selectHandler = Laya.Handler.create(tab, this.onSelect); ...

来源: Laya_社区 发布时间: 20170818

4. 关于缓动函数from的一些问题记录 [ 95%]

...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

5. 显卡驱动停止响应,且大概率蓝屏,原来是Handler惹的祸,但原因是什么 [ 91%]

显卡驱动停止响应,且大概率蓝屏,原来是Handler惹的祸,但原因是什么 问题来自于 http://ask.layabox.com/question/3673   谷歌浏览器直接崩,其他浏览器的话,也是CPU很高,操作窗口卡顿厉害   原因是一个run once = true的Handler,如果再...

来源: Laya_社区 发布时间: 20170330

6. list item 添加事件后无法监听 [ 90%]

...     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

7. Laya.Handler为什么注册不成功? [ 90%]

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

8. 游戏加载进度失效 [ 89%]

...url: "mileTxt.png", type: Laya.Loader.IMAGE } Laya.loader.load(asset, Laya.Handler.create(this, this.onLoaded),Laya.Handler.create(this,this.onLoading)); } onLoading(progress){ this.gameLoading.loadTxt.text="Loading..."+(progress*100)+"%"; } onLoaded() { this.cacheAnimation(); var waterBg = Laya.Spr...

来源: Laya_社区 发布时间: 20170103

9. Laya.Handler.create 加载图片回调参数问题 [ 89%]

Laya.Handler.create 加载图片回调参数问题 我想在调用loadImage加载图片完成之后把某个参数带到Handler里,但是按网上的说法我一直是失败, 示例代码: //初始化微信小游戏 Laya.MiniAdpter.init(); //程序入口 Laya.init(Laya.Browser.width, Laya.Brows...

来源: Laya_社区 发布时间: 20180621

10. 使用 Tween.to 方法报错 handler.run is not a function [ 89%]

使用 Tween.to 方法报错 handler.run is not a function 使用 Tween.to 方法报错 handler.run is not a function Tween.to(ape, { x: moveObj.x, y:moveObj.y }, 1000,Ease["circIn"],function(){ alert(1) },0,false,true); 2017-02-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到...

来源: Laya_社区 发布时间: 20170220