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

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

391. 微信3D小游戏的话,能把场景资源,与模型资源,全放到服务器动态加载吗 [ 63%]

... 微博 QZONE 微信 158*****395 赞同来自: 问题得到解决了,因为create是异步的,getRes是同步获取,所以,做3D用到这两个对称接口的时候 Laya.URL.basePath放到getRes上面,就可以从服务器拿到资源 2018-08-31 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 ...

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

392. 图集动画(ActionScript-LayaAir基础篇(AS3)-动画基础) [ 63%]

...#232628"; roleAni = new Animation(); Laya.loader.load(AniConfPath, Handler.create(this, onLoaded), null, Loader.ATLAS); } private function onLoaded(_e:*=null):void { Animation.createFrames(aniUrls("die",6),"dizziness"); roleAni.play(0,true,"dizziness"); Laya.stage.addChild(roleAni); } /** * 创建...

来源: Laya2.0_文档 发布时间: 20210715

393. 二进制图片(TypeScript-2D进阶篇(TS)-游戏加载策略) [ 63%]

...lob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(img.src); // 清除释放; }; img.src = window.URL.createObjectURL(blob); document.body.appendChild(img); } } xhr.send(); ``` 上面这个方法是...

来源: Laya2.0_文档 发布时间: 20210714

394. ToolTip鼠标悬停的使用 [ 62%]

...ya.stage.bgColor="#eeffcc"; Laya.loader.load("res/atlas/comp.json",Handler.create(this,onLoaded),null,Loader.ATLAS); } private function onLoaded():void { this._testTip=new TestTipsUI();//务必在Laya.init后去new实例,不可直接在全局变量处实例化 //切记,无论何种鼠标提示方...

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

395. 二进制图片(ActionScript-2D进阶篇(AS3)-游戏加载策略) [ 62%]

...lob = new Blob([this.response], { type: "image/png" }); var img = document.createElement("img"); img.onload = function (e) { window.URL.revokeObjectURL(img.src); // 清除释放; }; img.src = window.URL.createObjectURL(blob); document.body.appendChild(img); } } xhr.send(); ``` ​ 上面这个方法...

来源: Laya2.0_文档 发布时间: 20210714

396. sprite.loadImage加载图片怎么设置要显示的x,y坐标和宽高? [ 62%]

...= new Laya.Rectangle(0, 0, Laya.stage.width, Laya.stage.height); this.tMap.createMap("res/mario_map/new_map2.json", viewRect, Laya.Handler.create(this,this.initMap)); } private initMap(): void { var layer = this.tMap.getLayerByIndex(9); var gs = layer.getObjectByName('others1'); var sp: Laya.Sprite ...

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

397. laya.utils.Tween.to的第一个参数可以是个label? [ 62%]

...化的属性列表,比如{x:100,y:20,ease:Ease.backOut,complete:Handler.create(this,onComplete),update:new Handler(this,onComplete)}。          * @param    duration 花费的时间,单位毫秒。          * @param    ease 缓动类型,默认为匀速运动。         ...

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

398. 为什么手机端网页播放8k的音频要点一下才能播放,因为下载慢吗,电脑端网页都不用 [ 62%]

...));初始化的时候有load资源Laya.loader.load(this.soundPath, Handler.create(this, this.setup)); 2019-08-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 0 个回复 为什么被折叠? 0 个回复被折叠 要回复问...

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

399. SCALE_FIXED_WIDTH适配屏幕的问题 [ 62%]

...         Laya.loader.load("res/atlas/com/loading.atlas", Laya.Handler.create(this, this.loadGame));         }         private loadGame(): void {             var resArray = [                 { url: "res/atlas/lobby/create_room.atlas", type: Laya.Loader.ATLAS },        ...

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

400. 动画挂点(TypeScript-3D基础(TS)-LayaAir3D之Animator动画) [ 62%]

...ne3D.load("LayaScene_SceneMonkey/Conventional/SceneMonkey.ls",Laya.Handler.create(this,function(res){ Laya.stage.addChild(res); //用于挂点的精灵 var box = new Laya.MeshSprite3D(Laya.PrimitiveMesh.createBox(1,1,1)); var material = new Laya.BlinnPhongMaterial(); Laya.Texture2D.load("res/layabox...

来源: Laya2.0_文档 发布时间: 20210715