大约有 23 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0021 秒)
...D.load("res/layabox.png", Laya.Handler.create(this, function(tex){ //纹理加载完成后赋值 material.albedoTexture = tex; })); //将材质赋值给自定义模型 box.meshRenderer.material = material; ``` ![](img/1.png)(图1) 当然,这只是简单的一种用法,我们暂时只运用了最...
来源: Laya2.0_文档 发布时间: 20210714
...D.load("res/layabox.png", Laya.Handler.create(null, function(tex){ //纹理加载完成后赋值 material.albedoTexture = tex; })); //将材质赋值给自定义模型 box.meshRenderer.material = material; ``` ![](img/1.png)(图1) 当然,这只是简单的一种用法,我们暂时只运用了最...
来源: Laya2.0_文档 发布时间: 20210714
.../layabox.png", Handler.create(this, function(tex:Texture2D):void { //纹理加载完成后赋值 material.albedoTexture = tex; })); //将材质赋值给自定义模型 box.meshRenderer.material = material; ``` ![](img/1.png)(图1) 当然,这只是简单的一种用法,我们暂时只运用了最...
来源: Laya2.0_文档 发布时间: 20210715
...绍unity中LayaAir导出工具生成的各种文件详解,以及对应的加载方法。 ### 资源类型 `.ls`为场景文件,选择导出Scene类别时生成。其中包含了场景需要的各种数据、光照贴图、模型、位置等。需使用 **Scene3D** 类加载。 `.lh`为预设文...
来源: Laya2.0_文档 发布时间: 20210715
...绍unity中LayaAir导出工具生成的各种文件详解,以及对应的加载方法。 ### 资源类型 `.ls`为场景文件,选择导出Scene类别时生成。其中包含了场景需要的各种数据、光照贴图、模型、位置等。需使用 **Scene3D** 类加载。 `.lh`为预设文...
来源: Laya2.0_文档 发布时间: 20210715
...绍unity中LayaAir导出工具生成的各种文件详解,以及对应的加载方法。 ### 资源类型 `.ls`为场景文件,选择导出Scene类别时生成。其中包含了场景需要的各种数据、光照贴图、模型、位置等。需使用 **Scene3D** 类加载。 `.lh`为预设文...
来源: Laya2.0_文档 发布时间: 20210715
...typescript //创建Unlit材质 var material2 = new Laya.UnlitMaterial(); //加载纹理 Laya.Texture2D.load("res/threeDimen/texture/earth.png", Laya.Handler.create(this, function(texture) { //设置反照率贴图 material2.albedoTexture = texture; })); earth2.meshRenderer.material = material2; ``` ...
来源: Laya2.0_文档 发布时间: 20210714
...typescript //创建Unlit材质 var material2 = new Laya.UnlitMaterial(); //加载纹理 Laya.Texture2D.load("res/threeDimen/texture/earth.png", Laya.Handler.create(this, function(texture){ //设置反照率贴图 material2.albedoTexture = texture; })); earth2.meshRenderer.material = material2; ``` !...
来源: Laya2.0_文档 发布时间: 20210715
...t //创建Unlit材质 var material2:UnlitMaterial = new UnlitMaterial(); //加载纹理 Texture2D.load("res/threeDimen/texture/earth.png", Handler.create(this, function(texture:Texture2D):void { //设置反照率贴图 material2.albedoTexture = texture; })); earth2.meshRenderer.material = material2;...
来源: Laya2.0_文档 发布时间: 20210714
...; //创建EffectMaterial材质 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.gi...
来源: Laya2.0_文档 发布时间: 20210714