大约有 230 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0033 秒)
...尽量高点,反射效果更明显 pbrMat.metallic = 1; //加载纹理 Texture2D.load("res/threeDimen/pbr/jinshu.jpg", Handler.create(null, function(tex:Texture2D):void { //pbrMat.albedoTexture = tex; teapot.meshRenderer.material = pbrMat; })); ``` ![](img/5.png)(图5)
来源: Laya2.0_文档 发布时间: 20210715
...载图集图片返回的Texture对象,是需要自己裁切纹理转成Texture2D对象吗? Laya_Aaron • 2019-07-13 10:23 @邓中强:这个问题不是一句户两句话能解决的,也不是给个回答就能解决,这是一套知识体系。 Laya_Aaron • 2019-07-13 10:24 @Laya_Aaron:美...
来源: Laya_社区 发布时间: 20190710
...材质 var material = new Laya.EffectMaterial(); //加载地球贴图 Laya.Texture2D.load("res/threeDimen/texture/earth.png", Laya.Handler.create(this, function(texture) { //设置纹理 material.texture = texture; })); earth.meshRenderer.material = material; ``` ![](img/1.gif)(图1)
来源: Laya2.0_文档 发布时间: 20210714
...材质 var material = new Laya.EffectMaterial(); //加载地球贴图 Laya.Texture2D.load("res/threeDimen/texture/earth.png", Laya.Handler.create(this, function(texture) { //设置纹理 material.texture = texture; })); earth.meshRenderer.material = material; ``` ![](img/1.gif)(图12)
来源: Laya2.0_文档 发布时间: 20210714
...资源已被销毁。 对应其他的资源类型,像Mesh,Material,Texture2D等可以使用相同的方法销毁资源。
来源: Laya2.0_文档 发布时间: 20210715
...getRes(pngUrl); if (res && res._bitmap instanceof Laya.Texture2D) { res._bitmap.destroy(); } Laya.loader.clearRes(pngUrl) } } tmpDat.destroy(); } 2024-06-14 1 0 分享 微博 QZONE 微信 FlyBall 赞同来自:...
来源: Laya_社区 发布时间: 20240429
...资源已被销毁。 对应其他的资源类型,像Mesh,Material,Texture2D等可以使用相同的方法销毁资源。
来源: Laya2.0_文档 发布时间: 20210715
...资源已被销毁。 对应其他的资源类型,像Mesh,Material,Texture2D等可以使用相同的方法销毁资源。
来源: Laya2.0_文档 发布时间: 20210715
...二维纹理贴图 material.albedoTexture = Laya.Texture2D.load(PathConst.material + name + ".png"); material.renderMode = Laya.BlinnPhongMaterial.RENDERMODE_OPAQUE; //为box模型赋材质 ...
来源: Laya_社区 发布时间: 20180519
...纹理 pbrTexture = Loader.getRes("res/threeDimen/texture/earth.png") as Texture2D; //为PBRStandard材质设置漫反射贴图 pbrStandardMaterial.albedoTexture = pbrTexture; //修改导出球的材质 sphere.meshRenderer.material = pbrStandardMaterial; ``` ![](img/5.png)(图5) ### 3.是否能接...
来源: Laya2.0_文档 发布时间: 20210715