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

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

81. 火狐花屏问题 [ 73%]

...multiplyAlpha为true;代码修改如下,解决花屏问题,onFireFox的判断laya2去掉了, 我自己从laya1找回来; var onload = function (imageData) {                 clear();                 if (imageData) {                     var image = imageData;      ...

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

82. 多点触控的使用(JavaScript-3D基础(JS)-LayaAir3D之鼠标交互) [ 73%]

... var touchCount = this._scene.input.touchCount(); if (1 === touchCount){ //判断是否为两指触控,撤去一根手指后引发的touchCount===1 if (this.isTwoTouch){ return; } this._text.text = "触控点为1"; //获取当前的触控点,数量为1 var touch = this._scene.input.getTouch(0); ...

来源: Laya2.0_文档 发布时间: 20210715

83. 多点触控的使用(TypeScript-3D基础(TS)-LayaAir3D之鼠标交互) [ 73%]

... var touchCount = this._scene.input.touchCount(); if (1 === touchCount){ //判断是否为两指触控,撤去一根手指后引发的touchCount===1 if (this.isTwoTouch){ return; } this._text.text = "触控点为1"; //获取当前的触控点,数量为1 var touch = this._scene.input.getTouch(0); ...

来源: Laya2.0_文档 发布时间: 20210715

84. 遍历相关问题 [ 73%]

...-21 1 0 分享 微博 QZONE 微信 cuixueying 赞同来自: 这个是逻辑判断,不属于引擎问题,这里就不做解答了,建议网上可以搜索下数组的相关用法,谢谢!如果遇到引擎问题或者引擎bug可以及时告知,我们会及时回复的! 2017-04-20 0 0 ...

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

85. 关于Dialog的closeHandler问题 [ 72%]

...er)this.removeChildren(); 只有删除所有“孩子”的操作 并没有判断 每个child是否存在 closeHandler 2017-08-07 0 0 分享 微博 QZONE 微信 cuixueying 赞同来自: 谢谢你的建议,这个我们已经改了,我们正在重新更新引擎版本,晚些时候直接下载最...

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

86. 关于intersects碰撞的疑问 [ 72%]

...ngle),那么上面if里的应该怎么写呢?实现两个image的碰撞判断 问题三:image.setBounds(rectangle)之后,当我rectangle.setTo(x,x,x,x)是不是也动态影响了image的碰撞区域? 问题四:这个rectangle需要不需要添加到显示列表才能实现碰撞? 问...

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

87. list的selectHandler属性连续点击同一个item不能重复接收事件 [ 72%]

...: 我自己解决了,mouseHandler,可以接收所有事件,在这里面判断是否有点击事件。 2018-05-24 0 3 分享 微博 QZONE 微信 dz5566 赞同来自: 改源码方案可以这样: laya.ui.js改成这样即可,去掉判断if (this._selectedIndex !=value)     __getset(0,__proto...

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

88. LayaBox进阶之UI管理类 [ 72%]

...et uiData = {clazz: clazz, view: view}; this.uiList.push(uiData); } }首先判断本地缓存有没有,有的话 不处理,没得话,创建,push到数组中 private getView(clazz: any):Laya.Node{ for(let i:number =0 ; i<this.uiList.length ; i++){ let uiData = this.uiList[i]; if(uiData.cla...

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

89. laya.spine.js问题以及spine.core.js问题 [ 72%]

...微博 QZONE 微信 第七天堂 赞同来自: !== 表示强制执行类型判断 严格比较 2022-05-23 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 卡莉斯塔2014 相关问题 发起问题须知,必看!!!不按提问规则...

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

90. box2d动态创建绑定多个关节报错 Node:the component is singleton,can't add the second one. [ 71%]

...singleton,can't add the second one.   翻看源码后发现有这么一段判断单例组件的限制 __proto.addComponentIntance=function(comp){         if (comp.owner)             throw "Node:the component has belong to other node.";         if (comp.isSingleton &&...

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