大约有 1,567 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0058 秒)
Laya_社区(1103) Laya2.0_文档(231) Laya_示例(108) Laya2.0_示例(69) Laya3.0_文档(43) Laya3.0_api(11) Laya2.0_api(2)
...下图片错乱 static preLoadPublicAssets(){ this.sAssetList = Loader.getRes("file_list.json") Laya.loader.load("res/ui/share@atlas0.png", Handler.create(this, this.onLoaded), null, Loader.IMAGE, 1, true, null, true) } static onLoaded(res){ console.log("public assets inited !!!!") console.log(Laya....
来源: Laya_社区 发布时间: 20180609
...从github上下载layaair的源代码, 然后将源代码中的samples/res资源复制到本地项目的bin目录下。 3)将samples中的CameraMoveScript.ts和CustomTerrainMaterial.ts复制到本地项目的src目录下。 4) 将示例中的ts代码复制到LayaAir3D.ts中 最终代码结构...
来源: Laya_社区 发布时间: 20180403
... 个回复 Monica - 知识达人 赞同来自: ysshao 你用Laya.loader.getRes()获取下这个资源,如果返回的不是undefined的话你手动调一下loadselectanimation这个函数即可 2017-11-04 1 0 分享 微博 QZONE 微信 ysshao 赞同来自: Laya.loader.getRes(),里面的 参数怎...
来源: Laya_社区 发布时间: 20171103
...otate(new Laya.Vector3(-15, 0, 0), true, false); Laya.loader.create("../../res/threeDimen/skinModel/LayaMonkey/LayaMonkey.lh", Laya.Handler.create(this, onComplete)); function onComplete() { layaMonkey1 = scene.addChild(Laya.Sprite3D.load("../../res/threeDimen/skinModel/LayaMonkey/LayaMonkey.lh")); ...
来源: Laya_示例 发布时间: 20241118
...GameUiTest.js this.imaAudioLocal.on(Laya.Event.CLICK, this, ()=>{ let resUrl = "res/audio/sound_click.wav"; Laya.SoundManager.playSound(resUrl, 1); }); this.imaAudioNet.on(Laya.Event.CLICK, this, ()=>{ let resUrl = "https://具体地址见工程代码/h5/gun_res/v6/res/audio/hit.wav"; Laya.S...
来源: Laya_社区 发布时间: 20200225
...json文件并获取某对象值? private jsonParse() { Laya.loader.load("res/atlas/resTest0.json", Handler.create(this, this.onLoaded), null, Loader.JSON); } private onLoaded() { var json : JSON = Laya.Loader.getRes("res/atlas/resTest0.json"); var jsTx = JSON.stringify(json); } 已经通过上面...
来源: Laya_社区 发布时间: 20171016
...eTemp.buildArmature(1); Laya.stage.addChild(roleAni); }) roleTemp.loadAni('res/spine/knight/effect1.sk'); SK动画已经预加载了:Laya.loader.load(['res/spine/knight/effect1.png', 'res/spine/knight/effect1.sk'], Handler.create(this, init)); 2018-03-23 添加评论 免费帖 --> 分享 微博 QZ...
来源: Laya_社区 发布时间: 20180323
...on (exports, Laya) { 'use strict'; function DEB(str){ console.debug("[res]"+str); } class MiniFileMgr { static isLocalNativeFile(url) { for (var i = 0, sz = MiniAdpter.nativefiles.length; i < sz; i++) { if (url.indexOf(MiniAdpter.nativefiles[i]) != -1) return true; } return false; } sta...
来源: Laya_社区 发布时间: 20200103
...如下方式加载使用: var mc:MovieClip = new MovieClip(); mc.load("res/test.swf",true); 为何报错: [error]Failed to load: http://www.test.com/res/test/image/1.png ....... [error]Failed to load: http://www.test.com/res/test/image/66.png 2017-08-03 添加评论 免费帖 --> 分享 微...
来源: Laya_社区 发布时间: 20170803
...rice:0.01,title:"10金豆-测试",desc:"测试",balance:10,gift:0,imgPath:"res\\common\\BalanceSellDlg\\xiaodou.png",hot:1,orderCount:9} // 背景 var bg_image = new Laya.Image(); bg_image.skin = "res/popupwnd/market_item_bg.png"; bg_image.pos(0, 0); bg_image.size(312, 462); this.addChild(bg_image);...
来源: Laya_社区 发布时间: 20170422