大约有 114 项符合查询结果, 库内数据总量为 31,671 项。 (搜索耗时: 0.0032 秒)
...,也不会报错。 var loadArr:Array = new Array; loadArr= [{url: "res/atlas/hall_new.json", type: Loader.ATLAS}, // {url: "res/atlas/help.json", type: Loader.ATLAS}, // {url: "res/atlas/shop.json", type: Loader.ATLAS}, // {url: "shmjAssets/扣牌文字背景.png", type: Loader.IMAGE}, //这张...
来源: Laya_社区 发布时间: 20180301
... { url: "res/beijing/beijing2.png", type: Laya.Loader.IMAGE }, { url: "res/atlas/comp.png", type: Laya.Loader.IMAGE }, { url: "res/atlas/comp.atlas", type: Laya.Loader.ATLAS }], Laya.Handler.create(this, this.onLoaded), Laya.Handler.create(this, this.onLoading)); } static aaa(): void { } private onL...
来源: Laya_社区 发布时间: 20180507
... { url:"res/Bag.xml", type:Laya.Loader.BUFFER}, { url:"res/Bag_atlas0.png", type:Laya.Loader.IMAGE }, { url:"res/Bag_atlas0_1.png", type:Laya.Loader.IMAGE}, ], Laya.Handler.create(this, this.onLoaded)); 调用这个方法后,头条游戏报...
来源: Laya_社区 发布时间: 20190725
...() { //初始化引擎 Laya.init(600, 400); //Laya.loader.load([{url: "res/atlas/char_wudang01.json", type: Loader.ATLAS}], Handler.create(this, onLoaded)); this.onLoaded(); } private function onLoaded():void { //Animation.createFrames(["res/atlas/monsterbeattack/0.png","res/atlas/monsterbeattack/1....
来源: Laya_社区 发布时间: 20170220
...体结构请参考附件 Laya.loader.load([{url: "res/atlas/flicker/image.json", type: Loader.ATLAS}], Handler.create(this, onLoaded)); } private function onLoaded():void { //实例UI界面 var testView:TestVi...
来源: Laya_社区 发布时间: 20170608
... var image:Image = new Image(); image.skin = "res/atlas/clanwar_bg.jpg?" + Math.random(); Laya.stage.addChild(image); var index:int = 0; Laya.stage.timerLoop(1, this, function():void{index++;image.alph...
来源: Laya_社区 发布时间: 20190110
...后得到的数据是空的 Laya.loader.load([ { url:"res/Bag_atlas0.png", type:Laya.Loader.IMAGE }, { url:"res/Bag_atlas0_1.png", type:Laya.Loader.IMAGE}, { url:"res/Bag.xml", type:Laya.Loader.BUFFER} ], Laya.Handler.create(this, this.onLoaded)); ...
来源: Laya_社区 发布时间: 20190726
...源 如图设置 修改加载代码 Laya.loader.load([ { url: "res/atlas/comp.atlas", type: Loader.ATLAS }, { url: "unpack/comp/image.png", type: Loader.IMAGE }, { url: "test/TestPage.json", type: Loader.JSON }, ], Handler.create(this, this.onLoaded)); 运行报错: [warn]Ret...
来源: Laya_社区 发布时间: 20171230
ATLAS 打包可否選擇是JPG圖集還是PNG圖集 一般按下導出都會產生atlas、png、json檔,能夠選擇讓導出時是atlas、jpg、json檔嗎? 有些圖不需要透空效果,打包成JPG格式會比PNG格式小上許多。 2017-07-26 添加评论 免费帖 --> 分享 微博 QZON...
来源: Laya_社区 发布时间: 20170726
... var resArr:Array = [ {res:"res/atlas/ui.atlas"}, {res:"res/ui/back.png",type:Loader.IMAGE} ]; Laya.loader.load(resArr,Handler.create(this,this.onLoaded)); } ...
来源: Laya_社区 发布时间: 20180106