大约有 276 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0035 秒)
Laya_社区(173) Laya2.0_api(58) Laya3.0_文档(22) Laya2.0_文档(16) laya_api(3) Laya3.0_api(2) Laya2.0_示例(1) Laya_示例(1)
...tage.alignV = Laya.Stage.ALIGN_CENTER; Laya.loader.load([{ url: "res/atlas/comp.json", type: Loader.ATLAS }], Handler.create(this, this.onLoaded)); function onLoaded(): void { Laya.loader.load("res/comp/dian.part", Handler.create(this, this.onPartLoaded)); } function onPartLoaded(data: any) {...
来源: Laya_社区 发布时间: 20170803
...}, {url:"/bin/res/load/b.png",type:Laya.Loader.IMAGE}, {url:"/bin/res/load/comp.mp3",type:Laya.Loader.getRes}, ];新手刚学不太懂,这样加载出来调用的时候下标是数字,使用不太方便。如何可以实现带名称的数组方便后面调用呢? 2017-11-07 添加评论 免费...
来源: Laya_社区 发布时间: 20171107
...:encoding}中readyUrl用的是绝对路径(如http://10.10.10.69/res/atlas.comp.png),而不是相对于项目根目录的相对路径(如res/atlas/comp.png),导致的结果就是在查找缓存文件中有数据时(MiniFileMgr.getFileInfo(url)),部分地方用的绝对路径(MiniImage中),部...
来源: Laya_社区 发布时间: 20180207
...onLoaded),Handler.create(this, onProgress)); //Laya.loader.load("res/atlas/comp.atlas", Handler.create(this, onLoaded),Handler.create(this, onProgress)); } private function onProgress(v:Number):void { trace("onProgress",v); } 不管添加多少资源,onProgress都只会调用一次 之后...
来源: Laya_社区 发布时间: 20180428
...以滚动,你如果想看到滚动条,可以预加载以下IDE默认的comp.json图集,然后panel.vscrollbar.skin=“comp/vscroll.png” LayaAirChat_AS.rar 2017-09-04 2 1 分享 微博 QZONE 微信 阿沥❤ 赞同来自: 这个什么HTMLDivElement有用吗?怎么我就感觉就是个残废...
来源: Laya_社区 发布时间: 20170904
...行筛选,只需要在资源前取消勾选即可,譬如我不想压缩comp.png 3、如果我们有大量的资源,我们可以对其进行关键字筛选,譬如我输入001 这样,我们就可以针对某一类资源进行是否打包的设置了 附件 : --> 2017-09-06 添加评论 免...
来源: Laya_社区 发布时间: 20170906
...his.txtarea.overflow = "scroll"; //文本溢出 this.txtarea.skin = "atlas/comp/textarea.png"; //皮肤 this.txtarea.borderColor = "#f6ff03" //边框颜色 this.txtarea.scrollType = Laya.ScrollType.Vertical; //滚动方式 this.txtarea.vScrollBarSkin = "atlas/comp/vscroll.png"; //滚动条皮肤 } }...
来源: Laya3.0_文档 发布时间: 20241014
...tlas的区别 在编辑模式下按F12导出时,bin/res/atlas下会生成comp.png和comp.atlas文件,但看教学视频中,没有生成.atlas文件,而是生成了.json文件,这两个文件有什么区别,两个文件的内容除了格式外是一样的,生成文件的不同是与什...
来源: Laya_社区 发布时间: 20180508
...SCALE; // Laya.stage.size(6000, 6000); Laya.loader.load([{ url: "res/atlas/comp.json", type: Loader.ATLAS }], Laya.Handler.create(this, this.onLoaded)); function onLoaded(): void { var sprite = new Laya.Sprite(); sprite.loadImage('comp/bg.png'); Laya.stage.addChild(sprite); } 上面这段代码如...
来源: Laya_社区 发布时间: 20170803
...ad(resArr, Laya.Handler.create(null, function () { var a = new Laya.Image('comp/bg.png') Laya.stage.addChild(a) }), Laya.Handler.create(null, function (value) { console.log('加载进度:' + value) }, null, false)) 项目是微信小游戏 基本就是laya默认的2d微信小游戏里子 我就试...
来源: Laya_社区 发布时间: 20180808