大约有 204 项符合查询结果, 库内数据总量为 30,784 项。 (搜索耗时: 0.0034 秒)
Laya_社区(163) Laya2.0_api(9) laya_api(7) Laya3.0_文档(7) Laya3.0_api(7) Laya2.0_文档(7) Laya2.0_示例(2) Laya_示例(2)
... // 写法一 let g:Laya.Graphics = new Laya.Graphics(); g.drawRect(this.closeBtn.x-10,this.closeBtn.y-10,this.closeBtn.width+20,this.closeBtn.height+20,"#FF0000"); let hitA:Laya.HitArea = new Laya.HitArea(); hitA.hit = g; this.closeBtn.hitArea = hitA; // 写法二 this.closeBtn.graphics.drawRect(...
来源: Laya_社区 发布时间: 20170920
...n(Laya.Event.OPEN, this, this.onConnectSuccess); this.socket.on(Laya.Event.CLOSE, this, this.onDisonnect); this.socket.on(Laya.Event.ERROR, this, this.onConnectFail); this.socket.on(Laya.Event.MESSAGE, this, this.onReceive); this.socket.connectByUrl(url); 2018-09-10 添加评论 免费帖 --> 分享...
来源: Laya_社区 发布时间: 20180910
...了断开事件 code 1006 。然而此时按道理客户端应该出发onclose事件,以及websocket的readyState应该不在是OPEN 应该是CLOSE 可是此时还是OPEN,导致我的程序就无法进行判断从而进行重连逻辑。 附件 : --> 2020-03-26 添加评论 免费帖 --> 分享 ...
来源: Laya_社区 发布时间: 20200326
...少保持8FPS sound = new Sound(new URLRequest("")); sound.play(); sound.close(); */ //*/强迫保持原本设定的FPS try { sound = new Sound(); sound.addEventListener(SampleDataEvent.SAMPLE_DATA,onWakeUp); channel = sound.play(); }catch(error:Error){}; //*/ } protected function onWakeUp(event:Sam...
来源: Laya_社区 发布时间: 20180627
... 如下方法 修改后即可 public function addPath(points:Array, close:Boolean, convex:Boolean, dx:Number, dy:Number):void { var ci:int = 0; for (var i:int = 0, sz:int = points.length / 2; i < sz; i++) { var x1:Number = points[ci]+dx, y1:Number = points[ci + 1]+dy; points[ci] = x1; points...
来源: Laya_社区 发布时间: 20181127
...g, complete?: Handler, progress?: Handler): void; static open(url: string, closeOther?: boolean, param?: any, complete?: Handler, progress?: Handler): void; static close(url: string, name?: string): boolean; static closeAll(): void; static setLoadingPage(loadPage: Scene): void; 等等静态方法。...
来源: Laya_社区 发布时间: 20181128
...st.spaceY = 50; myTestUI.imgList.array = ['comp/bg.png', 'comp/btn_close.png', 'comp/button.png', 'comp/image.png']; myTestUI.imgList.renderHandler = new Laya.Handler(this, onImgListRender); function onImgListRender(box: Laya.Box) { let model = box.dataSource; let ...
来源: Laya_社区 发布时间: 20180514
....Scene.open("ui/p1/Page1.scene", false); break; case this.btn2: Laya.Scene.close("ui/p1/Page1.scene"); break; case this.btn3: Laya.Resource.destroyUnusedResources(); break; } }问题:特定操作会让界面变形,下图一是正常界面,下图2是变形界面。 1.png 2.png 重新步骤...
来源: Laya_社区 发布时间: 20190216
...常显示出来的bug! 如题,貌似是这样的,由于在第一次close之后没有将该对象的scaleX scaleY还原到初始状态,导致第二次show的时候,scaleX scaleY仍然为0,所以无法被弹出 2017-03-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到...
来源: Laya_社区 发布时间: 20170316
... this.btn_start.visible=false; //监听界面是否关闭 this.once(Event.CLOSE,this,onClose); //加载剩余游戏资源、音乐,加载完成与加载进度回调方法 Laya.loader.load(assetArr,Handler.create(this,onComplete),Handler.create(this,onProgress)) } return GameStart(); })(); 2017-...
来源: Laya_社区 发布时间: 20171123