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

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

131. hitArea用法问题 [ 54%]

...  // 写法一 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

132. Native1.0.1 无法连接wss [ 54%]

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

133. Laya native2.5.0 websocekt断开后readyState还是OPEN? [ 54%]

...了断开事件 code 1006 。然而此时按道理客户端应该出发onclose事件,以及websocket的readyState应该不在是OPEN 应该是CLOSE 可是此时还是OPEN,导致我的程序就无法进行判断从而进行重连逻辑。 附件 : --> 2020-03-26 添加评论 免费帖 --> 分享 ...

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

134. 浏览器失去焦点的时候能强制保持帧频吗? [ 54%]

...少保持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

135. 2.0.0beta5版本drawPoly设置坐标失效 [ 54%]

...  如下方法 修改后即可   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

136. 一个关于laya.display.scene不成熟的小建议 [ 53%]

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

137. typescipt在一定范围内加载图片按照等比排列 [ 53%]

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

138. Laya.Resource.destroyUnusedResources导致界面变形 [ 53%]

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

139. 对一个Dialog对象进行第二次show的时候,无法正常显示出来的bug! [ 53%]

...常显示出来的bug! 如题,貌似是这样的,由于在第一次close之后没有将该对象的scaleX scaleY还原到初始状态,导致第二次show的时候,scaleX scaleY仍然为0,所以无法被弹出 2017-03-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到...

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

140. 微信飞机大战中“开始页面”逻辑功能关于js继承问题 [ 53%]

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