大约有 161 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0035 秒)
Laya.URL.basePath加载不到网络资源 var resArray = [ { url: "res/atlas/images.atlas", type : Laya.Loader.ATLAS}, // { url: "res/swf/flash.json", type: Laya.Loader.JSON}, // { url: "images/background.png", type : Laya.Loader.IMAGE}, ]; Laya.loader.load(resArray, Laya.Handler.create(this, th...
来源: Laya_社区 发布时间: 20180531
...aleMode = "showall"; Laya.stage.bgColor = "#232628"; Stat.show(); Laya.URL.basePath += "../../"; Laya.loader.load("res/particles/GravityMode.part", Handler.create(this, onAssetsLoaded), null, Loader.JSON); })(); function onAssetsLoaded(settings) { sp = new Particle2D(settings); sp.emitter.start(); s...
来源: Laya_示例 发布时间: 20241117
...aleMode = "showall"; Laya.stage.bgColor = "#232628"; Stat.show(); Laya.URL.basePath += "../../"; Laya.loader.load("res/particles/RadiusMode.part", Handler.create(this, onAssetsLoaded), null, Loader.JSON); })(); function onAssetsLoaded(settings) { sp = new Particle2D(settings); sp.emitter.start(); sp...
来源: Laya_示例 发布时间: 20241117
...aleMode = "showall"; Laya.stage.bgColor = "#232628"; Stat.show(); Laya.URL.basePath += "../../"; Laya.loader.load("res/particles/particleNew.part", Handler.create(this, onAssetsLoaded), null, Loader.JSON); })(); function onAssetsLoaded(settings) { sp = new Particle2D(settings); sp.emitter.start(); s...
来源: Laya_示例 发布时间: 20241117
...的路径怎么处理呢。在本地加载的load()方法之后使用URL.basePath方法。 例如: onAwake(): void { //网络动态加载 Laya.URL.basePath = "https://XXXX";//请把XXX换成自己的真实网址; //在此之下,再使用load加载资源,都会自动加入URL网址。从网...
来源: Laya3.0_文档 发布时间: 20241014
...题 在更新1.7.17beta后。经过测试出现以下问题: 1.通过URL.basePath 指定http://ip地址时,在真机模拟时正常显示。 2.通过URL.basePath 指定外网https://域名时,在真机模拟资源不能正常显示。出现错误。 Failed to load:xxx.lh 3.12两种形式在微...
来源: Laya_社区 发布时间: 20180313
...ny> = Loader.getAtlas(this['_atlasPath']); this.basePath=atls_ary['dir']; //this.basePath = "map1.swf"; this['_initData'](data); } } 附件 : --> 2018-06-15 添加评论 免费帖 --> 分享 ...
来源: Laya_社区 发布时间: 20180615
... "unpack.json" ]; Laya.URL.basePath = "https://xxxxxxx/vivo/"; Laya.ResourceVersion.en able("version.json", Laya.Handler.create(this, this.onVersionLoaded), Laya.ResourceVersion.FILENAME_VERSION); 如上所示的小游戏平台资源...
来源: Laya_社区 发布时间: 20211122
...g = url.charAt(0); if (char1 === ".") { return formatRelativePath((base || basePath) + url); } else if (char1 === '~') { return rootPath + url.substring(1); } else if (char1 === "d") { if (url.indexOf("data:image") === 0) return url; } else if (char1 === "/") { return url; } return (base || basePath...
来源: Laya_社区 发布时间: 20180820
微信小游戏分包问题 1.资源分包以后 通过修改 URL.basePath下载的资源 本地缓存以后 再次通过 URL.basePath下载 是否会自动从本地下载 2.小游戏首次启动时,需要下次一批资源缓存 由于资源格式多种多样 使用downLoadFile缓存,是否也...
来源: Laya_社区 发布时间: 20180728