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

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

121. 这样的panel请问如何实现比较好? [ 67%]

...,会显示下一层界面,同时隐藏自己 this.btnFirst.on(Laya.Event.CLICK, this, this.change, [0]); //点击上面一层的按钮,会隐藏该层,同时显示上一层 this.btnChange.on(Laya.Event.CLICK, this, this.change, [1]); //初始时默认上面一层不可见 this.layoutSecond.vis...

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

122. 点击事件会导致setTimeout setInterval 延迟执行的问题 [ 67%]

...面的方法, 一样会导致setInterval明显延迟执行; Laya.stage.on('click', null, function (e) { console.log.log(`click`); }); 即使我将所有的事件绑定全部注释掉频繁的点击页面也会卡住!!!!! 我在事件的处理函数中设置stopPropagation没有任何作用; 现在...

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

123. 父容器为何不响应鼠标事件 [ 67%]

...tage.addChild(father) father.x = 100; father.y = 100; father.on(Laya.Event.CLICK,this,this.onTestClick) 然而点击后onTestClick()根本不响应,如果改成son.on(...)倒是可以,该怎么解决呢? 2018-10-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 ...

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

124. canvas下资源清理的问题 [ 67%]

...e.addChild(btn2);                          btn1.on(Event.CLICK,this,onClick);             btn2.on(Event.CLICK,this,onClick);                          Laya.loader.load([{url: "res/atlas/common.atlas", type: Loader.ATLAS}]);                   ...

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

125. UI-Clip [ 67%]

...FFFFFF,#FFFFFF,#FFFFFF"; this.controller.size(84, 30); this.controller.on('click', this, this.onClipSwitchState); this.controller.x = (Laya.stage.width - this.controller.width) / 2; this.controller.y = (Laya.stage.height - this.controller.height) / 2 + 110; Laya.stage.addChild(this.controller); } on...

来源: Laya2.0_示例 发布时间: 20241117

126. Sprite-屏幕截图 [ 67%]

... = new Laya.Button(skin,name); Laya.stage.addChild(btn); btn.on(Laya.Event.CLICK,this,cb); btn.size(147,55); btn.name = name; btn.right = 10; btn.top = index * (btn.height + 10); return btn; } onLoaded(){ for (let index = 0; index = ["res/button.png", "res/button.png", "res/button.png"]; private nam...

来源: Laya2.0_示例 发布时间: 20241117

127. list ,增加item ,我想在末尾增加,但是每次都给我翻倍的增加,如何解决 [ 67%]

...0); this.jiesan.zOrder=1; this.addChild(this.jiesan); this.jiesan.on(Event.CLICK,this,function(){ }); this.fenxiang=new Sprite(); //分享 this.fenxiang.loadImage($mj.Curr_Game_ImagePath + "hall/room_fenxiang.png"); this.fenxiang.pos(290,28); this.fenxiang.zOrder=1; this.addChild(this.fenxiang); thi...

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

128. parameter 2 is not of type 'WebGLTexture'. [ 67%]

... = this.getChildByName('btn_start') as Laya.Image; btn_start.on(Laya.Event.CLICK,this,()=>{ // 加载资源足以播放 if(videoElement.readyState == 4){ videoElement.play(); } }); 附件 : --> demo.zip 2020-07-22 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...

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

129. 3D射线穿透UI问题 [ 67%]

...动作")) as Laya.Button; button.name = "abc"; Laya.Button.on(Laya.Event.CLICK, this, function:void{ 具体实现  });     在另一个方法里面 Laya.stage.on(Laya.Event.MOUSE_UP, this, function(evt:Laya.Event):void{     console.log("aaaaa = " + evt.tager.name);  //这里名字是空的,...

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

130. 如何能监听到TouchStart和TouchEnd事件 [ 66%]

...值。*/         static MOUSE_UP: string;         /** 定义 click 事件对象的 type 属性值。*/         static CLICK: string;         /** 定义 rightmousedown 事件对象的 type 属性值。*/         static RIGHT_MOUSE_DOWN: string;         /** ...

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