大约有 1,567 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0051 秒)
Laya_社区(1103) Laya2.0_文档(231) Laya_示例(108) Laya2.0_示例(69) Laya3.0_文档(43) Laya3.0_api(11) Laya2.0_api(2)
...WALL; Laya.stage.bgColor = "#232628"; Stat.show(); skins = []; skins.push("res/ui/hslider.png", "res/ui/hslider$bar.png"); skins.push("res/ui/vslider.png", "res/ui/vslider$bar.png"); Laya.loader.load(skins, Handler.create(this, this.onLoadComplete)); } onLoadComplete() { this.placeHSlider(); this.pl...
来源: Laya2.0_示例 发布时间: 20241117
...ode = Stage.SCALE_SHOWALL; Laya.stage.bgColor = "#232628"; skins = ["../../res/ui/checkbox (1).png", "../../res/ui/checkbox (2).png", "../../res/ui/checkbox (3).png", "../../res/ui/checkbox (4).png", "../../res/ui/checkbox (5).png", "../../res/ui/checkbox (6).png"]; Laya.loader.load(skins, Handler.c...
来源: Laya_示例 发布时间: 20241117
在加载多个资源的时候,加载进度异常 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
... Laya.loader.load(loaditem, Laya.Handler.create(this, function (res) { let item = 'res/layabox.png' let getres = Laya.loader.getRes(item) console.log('getres',getres) //这个返回undefined }...
来源: Laya_社区 发布时间: 20210604
...c动效获取资源路径的问题。 现在想把资源全部导出到bin/res目录下面,包括配置和未打包资源,这样资源路径更清晰且容易管理一些。但是现在efc动效的资源获取路径默认是bin目录下,现在是否能够修改这个获取资源的默认路径...
来源: Laya_社区 发布时间: 20171122
...博 QZONE 微信 也许灬 赞同来自: function beginLoad(){ var res_array = [ {url : "res/atlas/loading.atlas", type : Laya.Loader.ATLAS}, {url : "res/atlas/person.atlas", type : Laya.Loader.ATLAS}, {url : "loading/progress.png", type : Laya...
来源: Laya_社区 发布时间: 20180730
...a.BlinnPhongMaterial = new Laya.BlinnPhongMaterial(); Laya.Texture2D.load("res/layabox.png", Laya.Handler.create(null, function (tex: Laya.Texture2D) { material.albedoTexture = tex; })); //测试遮挡剔除 material.cull = 0 box.meshRenderer.material = material; let res1 = Laya.Sprite3D.instantia...
来源: Laya_社区 发布时间: 20190717
laya.script中怎么设置prop的vector类型的item为res? 我想设置vector类型的item对象为res,看文档只有单个属性可以,代码如下: /** @prop {name: resType, tips:"abc",type:string,accept:res} */ resType:String ="";如果type:vector,怎么设置vector的每个对象是re...
来源: Laya_社区 发布时间: 20191025
...无效 直接上代码 var xml:XML = Laya.loader.getRes("res/config.xml"); xml = xml.firstChild; for (var node:XML = xml.firstChild; node != null; node = node.nextSibling) { var id:Numb...
来源: Laya_社区 发布时间: 20170918