• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 1,567 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0051 秒)

21. UI-Slider [ 94%]

...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

22. UI-CheckBox [ 94%]

...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

23. 在加载多个资源的时候,加载进度异常 [ 94%]

在加载多个资源的时候,加载进度异常 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

24. 如何把加载好的二进制数据转成Texture? [ 94%]

...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

25. 二进制文件打包后,读取不到zip包内的文件 [ 94%]

...    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

26. 资源发布目录以及efc动效获取资源路径的问题。 [ 94%]

...c动效获取资源路径的问题。 现在想把资源全部导出到bin/res目录下面,包括配置和未打包资源,这样资源路径更清晰且容易管理一些。但是现在efc动效的资源获取路径默认是bin目录下,现在是否能够修改这个获取资源的默认路径...

来源: Laya_社区 发布时间: 20171122

27. IOs使用手动删除本地资源再次进去加载问题 [ 94%]

...博 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

28. 修改position与修改localPosition结果不一致(同处于3d场景下的两个节点) [ 94%]

...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

29. laya.script中怎么设置prop的vector类型的item为res? [ 93%]

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

30. 用xml描述创建一个clip,interval字段妖孽无效 [ 93%]

...无效 直接上代码             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