大约有 1,103 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0052 秒)
...类似白鹭的加载方式 第一次发,不足之处还请见谅 class RES extends Laya.EventDispatcher{ // 资源组 public static groups: any; // 资源 public static resources: any; // 完成加载资源配置文件 public static ONLOADEDRESJSON: string = "onLoadedResJson"; // 资源配置文...
来源: Laya_社区 发布时间: 20161011
... 代码如下: class main{ constructor(){ MapManager.getInstance().LoadMapResource(); } } new main(); class MapManager { private static s_instance = null; public static getInstance():MapManager { if(null==this.s_instance) { this.s_instance=new MapManager(); this.s_instance.init(); } return this.s_in...
来源: Laya_社区 发布时间: 20171124
...的 然後思路大概就是下面的codeclass LoaderManager { private progressUI: UIBase; private token; constructor(token) { Laya.loader.load([{ url: "res/ui/LoadProgress.fui", type: Loader.BUFFER }], Handler.create(this, this.loadProgress)) this.token = token; } public loadProgress() { this.progr...
来源: Laya_社区 发布时间: 20171204
...问题吗 //设置版本控制类型为使用文件名映射的方式 Laya.ResourceVersion.type = Laya.ResourceVersion.FILENAME_VERSION; Laya.ResourceVersion.enable("version.json", Laya.Handler.create(this, beginLoad)) function beginLoad() { //加载LOADING资源 Laya.loader.load([{ url: "res/atlas/...
来源: Laya_社区 发布时间: 20180710
1.0版本新建空项目,bin目录下没有res目录 1.0版本新建空项目,没有res目录,虽然在UI编辑页面F12导出,会自动生成res目录,但是在某些情况下,例如官方的打飞机例子,在做图集之前,先做背景滚动,需要单独将background.png文件放入res目录,...
来源: Laya_社区 发布时间: 20160701
我资源导出目录明明是 res但是为什么到bin的根目录下了呢?只有打包的资源才能发不到res目录 ? 不打包的手动拷贝? 附件 : --> 2018-07-19 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 ...
来源: Laya_社区 发布时间: 20180719
IDE发布的资源如何统一发布在res目录下? 如图,bin目录下发布的图片资源文件一大堆,希望能把资源文件发布的时候统一发布在res目录下 这样bin文件夹的结构如下 bin lib //LayaAir引擎 res //资源文件夹 src //JS代...
来源: Laya_社区 发布时间: 20160816
...window[className] = (function(original) { function Class() { this.arr = [ "res/atlas/lucky8.json", "res/atlas/lucky8/lewinlineicons.json", "res/atlas/lucky8/setting.json", "res/atlas/lucky8/setView.json", "res/atlas/lucky8/kj.json", "res/atlas/lucky8/mh.json", "res/atlas/lucky8/light.json", "res/atl...
来源: Laya_社区 发布时间: 20170803
在加载多个资源的时候,加载进度异常 Laya.loader.load(["res/atlas/images.atlas", "res/atlas/f1.atlas", "res/atlas/f2.atlas", "res/atlas/f3.atlas", "res/atlas/f4.atlas", "res/atlas/f5.atlas"], Laya.Handler.create(this, function(){ }), Laya.Handler.create(this, function(e){ c...
来源: Laya_社区 发布时间: 20180101
...17-11-03 14:13 这应该是你要的结果 我贴伪代码给你 loadBytes(res.bin, () => { res.texture = Texture.create(res.source, 0, 0, res.texWidth, res.texHeight); // res.source.dispose();//提交显卡是异步过程 dispose 会导致texture无效 // setTimeout(() => { // res.source.disp...
来源: Laya_社区 发布时间: 20170502