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

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

21. 游戏加载进度失效 [ 79%]

...请大神指点。 constructor() { Laya.init(960, 540, Laya.WebGL); Laya.stage.screenMode = "horizontal"; Laya.stage.scaleMode = Laya.Stage.SCALE_EXACTFIT; Laya.stage.alignH = "center"; Laya.stage.alignV = "middle"; Laya.stage.bgColor = "#ffffff"; this.gameLoading=new ui.GameLoadingUI(); //创建加...

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

22. 图片加载问题 [ 79%]

...加载问题 var s:Sprite = new Sprite; s.loadImage("res/soil.png"); Laya.stage.addChild(s); chrome报错:Access to Image at 'file:///E:/study/LayaAirStudy/bin/h5/res/soil.png' from origin 'null' has been blocked by CORS policy: Invalid response. Origin 'null' is therefore not allowed access. 2017...

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

23. dialog的popup方法不会关闭其他弹窗 [ 79%]

...log = new NormalDialog(context); this.normalDialog.popup(true, true); Laya.stage.addChild(this.normalDialog);  }  }     // 弹窗代码   class NormalDialog extends ui.normalDialogUI { constructor( text: string ) { super(); // 设置label文字 this.context.text = text; this.btn_close.on(Laya.E...

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

24. 新手!谁懂得把下面两个文件转成layaair可以运行的代码 [ 79%]

...          }               this.addEventListener(Event.ADDED_TO_STAGE, onAddedToStageHandler);           }           private function onAddedToStageHandler(evt:Event):void         {             this.removeEventListener(Event.ADDED_TO_STAGE, onAddedToStageHandler);   ...

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

25. 隐藏默认的虚拟键、屏蔽APP窗口弹出脚本错误信息 的问题 [ 78%]

...高 使用WebGL渲染 Laya.init(640,960,Laya.WebGL); //屏幕缩放模式 stage 舞台 Laya.stage.scaleMode= Laya.Stage.SCALE_NOSCALE ; //水平对齐方式 Laya.stage.alignH = Laya.Stage.ALIGN_CENTER ; //垂直对齐方式 Laya.stage.alignV = Laya.Stage.ALIGN_MIDDLE ; //设置适配模式 Laya.stag...

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

26. laya.display.Input [ 77%]

...读]是否已经销毁。对象销毁后不能再使用。Node displayedInStage : Boolean[read-only] 表示是否在显示列表中显示。Node displayHeight : Number[read-only] 对象的显示高度(以像素为单位)。 Sprite displayWidth : Number[read-only] 对象的显示宽度(以...

来源: Laya2.0_api 发布时间: 20190513

27. Tween的to方法完成缓动后的回调怎么写,Tween.to(beginbox,{x:-Laya.Browser.width},1000,null,aaa,0,false);aaa是一个测试方法 [ 77%]

...gamebox.x = Laya.Browser.width;     gamebox.visible = true;     Laya.stage.addChild(gamebox);     // Tween.to(beginbox,{x:-Laya.Browser.width},1000,null,);     Tween.to(beginbox,{x:-Laya.Browser.width},1000,null,Handler.create(this,onTweeed))     Tween.to(gamebox,{x:0},1000);     c...

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

28. 加载.lh文件 运行后黑屏 无法显示 [ 77%]

...ctor3 = new Laya.Vector3(0, 1, 0);         Laya3D.init(0, 0); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; Laya.stage.screenMode = Laya.Stage.SCREEN_NONE;         Laya.Stat.show();     //var resource = [{url: "res/threeDimen/skinModel/LayaMonkey/LayaMonkey.lh", type: Laya3D.HIER...

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

29. 使用UrlLoader加载图片,flash获取data为byteArray,翻译成h5后data为image? [ 77%]

...:URLLoader; private var l:Loader; public function UrlImage() { super(); if(stage) { init(); } else { this.addEventListener(Event.ADDED_TO_STAGE,init); } } private function init(e:Event=null):void { urlLoader=new URLLoader(); urlLoader.dataFormat=URLLoaderDataFormat.BINARY; urlLoader.addEventListener...

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

30. 在微信分享成功的回调函数里,Laya播放音效失败。 [ 77%]

...a.timer.clear(this, this.onLoop); //移除舞台的鼠标移动事件 Laya.stage.off(Laya.Event.MOUSE_MOVE); }  //恢复 GameEx.prototype.resume = function () { //在循环中创建敌人 Laya.timer.frameLoop(1,this,this.onLoop); console.log("恢复播放音乐") Laya.SoundManager.stopMusic(); Laya...

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