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

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

211. event自定义事件的问题 [ 72%]

event自定义事件的问题 rt,自定义事件派发有什么条件吗?比如我在A类派发一个自定义事件,在B类添加侦听器监听事件,但是我在EventDispatcher类加了一个trace,事件没有派发成功,下面是testDemo LayaSample类: package { import laya.displ...

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

212. 关于微信小游戏下的MOUSE_UP事件touches问题 [ 72%]

...小游戏后,在微信开发者工具中,当MOUSE_UP事件触发时,Event.touches个数正确,为0   当使用手机预览时,MOUSE_UP事件触发时,Event.touches个数多了1(即抬起的手指还被包含在内了) 这个问题有哪位大大遇到过么?微信小游戏环境...

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

213. [LayaAir3]LayaAir3.0UnityPlugin 导出出错 [ 72%]

...Verify that all layout Begin/End calls match UnityEngine.GUIUtility:ProcessEvent (int,intptr,bool&)  MissingReferenceException: The object of type 'SkinnedMeshRenderer' has been destroyed but you are still trying to access it. Your script should either check if it is null or you should not dest...

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

214. IOS真机下监听MOUSE_MOVE事件会报错 [ 71%]

...his.width / 2; test.y = this.height / 2; this.addChild(test); test.on(Laya.Event.MOUSE_MOVE, this, (e) => { console.log(e); }); 监听mouse_move事件后,手指在test上滑动,会报错:   附件 : --> 2017-08-06 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结...

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

215. 骨骼Label事件,多接收一次 [ 71%]

骨骼Label事件,多接收一次 看了骨骼里的事件数据eventAniArr只有一次,但我函数却收到了2次回调 附件 : --> 2018-03-15 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 qian 赞同来...

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

216. Laya.HttpRequest 没有调用回调方法? [ 71%]

...a.HttpRequest(); xhr.http.timeout = 10000;//设置超时时间; xhr.once(Event.COMPLETE,this,completeHandler); xhr.once(Event.ERROR,this,errorHandler); xhr.on(Event.PROGRESS,this,processHandler); xhr.send("https://www.baidu.com/","","get","text"); function processHandler(data){ console.log(data); ...

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

217. textArea滚动条异常问题 [ 71%]

...用ide设置的 txtInput.wordWrap = true;//使用ide设置的 txtInput.on(Event.INPUT, this, onInputChange); private function reset(e:Event = null):void { clickStar = 0; txtInput.text = ""; txtLast.text = "剩余输入:" + WelfareNoticeMgr.MAX_WARD + "字"; } private ...

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

218. layaAir 打包成apk后在真机上运行 使用粒子时报错 [ 71%]

... (http://192.168.1.240:8900/bin/ ... :11690)                at e.i.event (http://192.168.1.240:8900/bin/ ... 1:9149)                at e.n._endLoad (http://192.168.1.240:8900/bin/ ... :27979)                at e (http://192.168.1.240:8900/bin/ ... :27286)              ...

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

219. 二进制图片(ActionScript-2D进阶篇(AS3)-游戏加载策略) [ 71%]

...代码如下: ```java package { import laya.display.Sprite; import laya.events.Event; import laya.net.HttpRequest; import laya.utils.Browser; public class LayaSample { public function LayaSample() { //初始化引擎 Laya.init(1136, 640); var sp:Sprite = new Sprite(); var xhr:HttpRequest = new Htt...

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

220. 为对象创建Laya.Event.MOUSE_UP 和 Laya.Event.CLICK 事件的问题,, [ 71%]

为对象创建Laya.Event.MOUSE_UP 和 Laya.Event.CLICK 事件的问题,, 为同一个对象创建Laya.Event.MOUSE_UP 和 Laya.Event.CLICK 事件, 点击对象,松开的时候,先响应MOUSE_UP事件,然后才响应的CLICK事件,  我如何在响应了MOUSE_UP事件以后,不让CLIC...

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