大约有 230 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0043 秒)
...aterial = new Laya.TerrainMaterial(); terMaterial.diffuseTexture1=new Laya.Texture2D.load("map2.png"); terMaterial.diffuseTexture2=new Laya.Texture2D.load("map2.png"); terMaterial.diffuseTexture3=new Laya.Texture2D.load("map2.png"); terMaterial.diffuseTexture4=new Laya.Texture2D.load("map2.png"); te...
来源: Laya_社区 发布时间: 20170615
...skyDome = new Laya.SkyDome(); camera.sky = skyDome; skyDome.texture = Laya.Texture2D.load(envpath + envinfoobj.skytex); skyDome.environmentSpecular = Laya.DataTexture2D.load(envpath + envinfoobj.prefiltedEnv); var irrdMat = new Float32Array(envinfoobj.IrradianceMat); skyDome.envDiffuseSHRed = irrdMa...
来源: Laya_示例 发布时间: 20241118
... = new Laya.PBRStandardMaterial(); //反射贴图 mat.albedoTexture = Laya.Texture2D.load('../../res/threeDimen/scene/PBRMaterialScene/Assets/PBR Barrel/Materials/Textures/Barrel_AlbedoTransparency.png'); //法线贴图 mat.normalTexture = Laya.Texture2D.load('../../res/threeDimen/scene/PBRMaterialS...
来源: Laya_示例 发布时间: 20241118
... var mat:PBRStandardMaterial = new PBRStandardMaterial(); //反射贴图 Texture2D.load('res/threeDimen/scene/PBRMaterialScene/Assets/PBR Barrel/Materials/Textures/Barrel_AlbedoTransparency.png', Handler.create(this, function(texture:Texture2D):void { mat.albedoTexture = texture; })); //法线贴图...
来源: Laya2.0_文档 发布时间: 20210714
Laya.Loader.getRes("xxx.png")取出来的资源为什么是Texture2D,不是Texture 两张图片,一张取出来是Texture。 另一张却是Texture2D 版本 Laya 2.4.0.1600 这是一个图集动画,第一次加载显示没问题,是在第二次的时候出了问题。 播放流程:第...
来源: Laya_社区 发布时间: 20200417
... console.log('res,', (typeof res)) Laya.Texture2D.load("res/layabox.png", Laya.Handler.create(null, function (tex: Laya.Texture2D) { material.albedoTexture = tex; let item = 'res/layabox.png'...
来源: Laya_社区 发布时间: 20210604
...aterial = new Laya.TerrainMaterial(); terMaterial.diffuseTexture1=new Laya.Texture2D.load("map2.png"); terMaterial.diffuseTexture2=new Laya.Texture2D.load("map2.png"); terMaterial.diffuseTexture3=new Laya.Texture2D.load("map2.png"); terMaterial.diffuseTexture4=new Laya.Texture2D.load("map2.png"); te...
来源: Laya_社区 发布时间: 20170620
texture2D的setPixel纹理rgba数据之后会随着窗口的缩放,渐变成黑色 export class Texture2dTest { private sprite3D:Laya.Sprite3D; private readonly AllPng:string[] = ["pic-001.png","output-06.png"]; private texture:Laya.Texture2D; private box; constructor(){ Laya3D.init(0, 0); Laya.s...
来源: Laya_社区 发布时间: 20220815
# Texture2D概述 ###### *version :2.1.0 Update:2019-5-25* 纹理是增强计算机生成三维图像的真实感的有力工具。在没有纹理时,你的三维图像往往是像发亮的塑料(图1)。使用纹理后,能使你的网格、粒子、和界面更生动如图2。纹理是...
来源: Laya2.0_文档 发布时间: 20210714
# Texture2D概述 ###### *version :2.1.0 Update:2019-5-25* 纹理是增强计算机生成三维图像的真实感的有力工具。在没有纹理时,你的三维图像往往是像发亮的塑料(图1)。使用纹理后,能使你的网格、粒子、和界面更生动如图2。纹理是...
来源: Laya2.0_文档 发布时间: 20210715