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

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

541. Image.loadImage 方法加载问题 [ 65%]

...button/button_window_public_space_enter.png";    this.btnEnter.on( Laya.Event.CLICK, this, this.btnClick );    this.width = 1553;    this.height = 270;   }   public set publicSpaceData ( publicSpaceInfoData:any )   {    this._publicSpaceData = publicSpaceInfoData;    console.log...

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

542. 射线检测-放置物体 [ 65%]

... _offset = new Laya.Vector3(0, 0.25, 0); //鼠标事件 Laya.stage.on(Laya.Event.MOUSE_UP, this, function () { if (_outHitInfo.distance !== -1) { var sphere = scene.addChild(new Laya.MeshSprite3D(new Laya.SphereMesh(0.25, 16, 16))); var mat = new Laya.StandardMaterial(); mat.diffuseTexture = Laya.Te...

来源: Laya_示例 发布时间: 20241118

543. at api readFile fail callback function [ 65%]

...I:loadAnimation 加载并播放动画问题 layaair2.0)请问js的Laya.Event.FRAME怎么用,看api中有,但写了不执行。 layair 两点之间的距离api在哪里 官方的API为什么找不到pivot和pos? 问题状态 最新活动: 2018-08-14 10:39 浏览: 1465 关注: 2 人 lh480750...

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

544. 【音效BUG】在游戏失焦后再次返回游戏导致音效播放异常的问题与解决方案 [ 65%]

...为失焦而自动暂停,监听游戏失焦事件:Laya.stage.on(Laya.Event.BLUR,this,this.method); 在失焦的回调里设置: Laya.SoundManager.musicMuted = true; Laya.SoundManager.stopMusic(); 将正在播放的音乐路径存为成员变量;   2.监听游戏获取焦点事件: 监听...

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

545. IOS微信内置浏览器陀螺仪问题 Laya2.4.0bate [ 65%]

...回调 已经测试过的方式: 以下三种方式都无返回 window.addEventListener('devicemotion', function(event){}) window.addEventListener('deviceorientation', function(event)  {}) Laya.Gyroscope.instance.on(Laya.Event.CHANGE, this, this.onDeviceorientation);  连接打开方式都由...

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

546. web和微信端没有问题,打包成apk后 httprequest报Request failed Status:404 text:undefined [ 65%]

...相关的链接 提交 2 个回复 金风 赞同来自: this.xhr.once(Laya.Event.COMPLETE, this, this.CompleteHandler); this.xhr.once(Laya.Event.ERROR, this, this.ErrorHandler); this.xhr.on(Laya.Event.PROGRESS, this, this.ProgressHandler); this.xhr.send(Global.WebHost+this.currentRequest.url, this.c...

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

547. 引擎加载动画过程中断网,动画还会继续加载吗? [ 64%]

...过程中断网,动画还会继续加载吗? 引擎加载动画完成的 event.complet 事件,在加载动画过程中断网,然后重连网络后,该事件一直没有被触发?请问有什么解决方案吗? 2018-03-31 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 ...

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

548. UI 控件多次调用 RESIZE 回调问题 [ 64%]

...var a = new Laya.Box(); a.left = a.top = a.right = a.bottom = 0; a.on(Laya.Event.RESIZE, this, () => { console.warn(" resize ===== "); }) Laya.stage.addChild(a); Laya.timer.loop(1000, this, () => { a.addChild(new Laya.Box()); }); --------------- 测试代码如上,每1s会回调一次控件 ...

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

549. [求助]无法使用loader预先加载 [ 64%]

...Handler.create(this, onLoading, null, false), Loader.TEXT); Laya.loader.on(Event.ERROR, this, onError);   private function onAssetLoaded(texture:Texture):void{             //console.log("111: ");                          txt.visible=false;            ...

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

550. 分享:Panel下动态修改子容器宽高并刷新显示! [ 64%]

...宽高并刷新显示! package { import laya.display.Sprite; import laya.events.Event; import laya.ui.Button; import laya.ui.Panel; import laya.utils.Browser; import laya.utils.Handler; public class LayaUISample { public function LayaUISample() { // 不支持WebGL时自动切换至Canvas Laya.init...

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