大约有 2,479 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0061 秒)
Laya_社区(2000) Laya3.0_api(129) Laya2.0_文档(109) laya_api(84) Laya2.0_api(82) Laya_示例(36) Laya3.0_文档(24) Laya2.0_示例(15)
...material = meshSprite3D.meshRender.material; //法线贴图 material.normalTexture = Laya.Texture2D.load(this.normalMapUrl[i]); } Laya.timer.frameLoop(1, this, function () { monster1.transform.rotate(this.rotation); monster2.transform.rotate(this.rotation); }); }class BlinnPhong_NormalMap { private ...
来源: Laya_示例 发布时间: 20241119
...tus }, (state, responseText) => { this.errors[path] = `Couldn't load texture atlas ${path}: status ${status}, ${responseText}`; if (error) error(path, `Couldn't load texture atlas ${path}: status ${status}, ${responseText}`); this.toLoad--; this.loaded++; }); 附件 : --> 2022-01-22 添加评...
来源: Laya_社区 发布时间: 20220122
...染时错位的bug 在2.3.0如果你用了裁剪空白区域(可以参阅texturepacker的裁剪空白区域功能,一样的原理),在你对显示单位设置锚点后,显示有很大概率会错位。 官方Git:https://github.com/layabox/LayaAir/tree/master/src/layaAir/laya(每周去...
来源: Laya_社区 发布时间: 20200708
...资源所在图集也存在,不过小图的source的_referecentCount==0,_texture==null。不知是不是这个原因引起? 如附件图,black.png是用到的小图,所在图集为comui.atlas 附件 : --> 2022-07-22 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找...
来源: Laya_社区 发布时间: 20220722
...合适 请问Native下,怎么将二进制的图片转换为bitmap或者texture? 将ui设置为bitmap,当鼠标悬浮在button上时,会导致ui重绘,有什么方法能避免吗? button就是一张静态图+文本,不需要选中按下等状态 Maximum call stack size exceeded 微信...
来源: Laya_社区 发布时间: 20171113
...: void { console.log("加载进度: " + progress); } private onAssetLoaded(texture:Laya.Texture){ console.log("加载结束"); } Log输出内容 Warning!,this class[MiniAdpter] already exist: Object {} 加载进度: 0.3 加载进度: 0.8999999999999999 加载进度: 1 加载结束 lose skin lose ski...
来源: Laya_社区 发布时间: 20180314
...在游戏中会碰到许多,如果能够预处理一下通过生产新的texture来优化性能,那就完美了。我在百度上搜索了下这有个文章http://www.hewebgl.com/article/getarticle/108可以实现动态生成texture,希望laya官方也可以提供类似的新方法,例如sav...
来源: Laya_社区 发布时间: 20170102
...on(); ani.loadAnimation("role.ani"); var gra:Graphics = ani.frames[0]; var texture:Texture = gra._one[0];//取得纹理 //如何取得纹理的pivotX和pivotY 如何取得role.ani配置中的pivotX和pivotY 2018-02-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...
来源: Laya_社区 发布时间: 20180203
...red 赞同来自: 您好,这个问题是由于真机不支持webgl的OES_texture_float_linear跟OES_texture_half_float两个扩展导致的。 我们联系一下微信平台,看看他们能不能解决 2024-07-23 0 0 分享 微博 QZONE 微信 layaAir小孟 赞同来自: 您好,方便将这...
来源: Laya_社区 发布时间: 20240718
...false, false); var material:BlinnPhongMaterial = new BlinnPhongMaterial(); Texture2D.load("res/layabox.png", Handler.create(null, function(tex:Texture2D):void { material.albedoTexture = tex; })); box.meshRenderer.material = material; ``` #####
来源: Laya2.0_文档 发布时间: 20210714