大约有 463 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
Laya_社区(259) Laya3.0_api(94) Laya2.0_文档(62) Laya_示例(23) Laya2.0_api(10) laya_api(7) Laya3.0_文档(7) Laya2.0_示例(1)
...e; void main() { vec4 albedoTextureColor = vec4(1.0); albedoTextureColor = texture2D(u_AlbedoTexture, v_Texcoord0); gl_FragColor=albedoTextureColor; } ``` ##### 初始化自定义Shader > 导入着色器代码 ```javascript import OutlineFS from "../customShader/outline.fs"; import OutlineVS from "....
来源: Laya2.0_文档 发布时间: 20210715
...。 ![](img/2.png)(图2) #### 3. 纹理加载 加载单个纹理使用Texture2D.load方法。这里我们创建了一个正方体,并且将加载的纹理设置为他的纹理。这个操作实际上和3D简单示例的操作是相同的。 ```typescript //加载纹理 Laya.Texture2D.load("res...
来源: Laya2.0_文档 发布时间: 20210715
...ar material: Laya.BlinnPhongMaterial = new Laya.BlinnPhongMaterial(); Laya.Texture2D.load( "res/layabox.png", Laya.Handler.create(null, function (tex: Laya.Texture2D) { material.albedoTexture = tex; }) ); box.meshRenderer.material = material; //设置文本显示框位置 this.text.x = Laya.stage.wi...
来源: Laya_社区 发布时间: 20200917
...29 15:07 @Laya_Aaron:我看了你以前的写的那个做个面片,贴上texture2d的贴图,但是回报一个空textrue.source是Undefined Laya_Aaron • 2019-04-29 17:26 @咕噜咕噜:不用搞那么复杂,u3d 里面直接弄个显示的面片 导出使用 咕噜咕噜 • 2019-04-29 21:26 @...
来源: Laya_社区 发布时间: 20190428
...e; void main() { vec4 albedoTextureColor = vec4(1.0); albedoTextureColor = texture2D(u_AlbedoTexture, v_Texcoord0); gl_FragColor=albedoTextureColor; } ``` ##### 初始化自定义Shader > 导入着色器代码 ```javascript var OutlineVS:String = __INCLUDESTR__("../customShader/outline.vs"); var Out...
来源: Laya2.0_文档 发布时间: 20210715
...r = vec3(0.0, 1.0, 0.0);\r\nvec2 textureSize = vec2(84, 84);\r\nvec4 myC = texture2D(texture, v_texcoordAlpha.xy);\r\nif (myC.a >= 0.5)\r\n{\r\ngl_FragColor = v_color * myC;\r\nreturn;\r\n}\r\nint strokeCount = 0;\r\nstrokeCount += getIsStrokeWithAngel(0.0);\r\nstrokeCount += getIsStrokeWithAngel...
来源: Laya_社区 发布时间: 20190528
...e; }else{ var unlitMat = new Laya.PBRStandardMaterial(); var texture: Laya.Texture2D = Laya.loader.getRes("Reference/cardtest.png"); unlitMat.albedoTexture = texture; cardOne.meshRenderer.material = unlitMat; cardOne.meshRenderer.castShadow = true; } }真心求教大佬,怎么才能让在底板下...
来源: Laya_社区 发布时间: 20191223
...laya.d3.math.Vector3; import laya.d3.math.Vector4; import laya.d3.resource.Texture2D; import laya.d3.resource.TextureCube; import laya.d3.resource.models.BaseMesh; import laya.d3.resource.models.Mesh; import laya.display.Stage; import laya.events.Event; import laya.resource.Texture; import laya.util...
来源: Laya_示例 发布时间: 20241118
...ialog限制拖动区域有什么方法 分享:Sprite 转换成3D贴图(Texture2D)的方法,如果有更好的方法,请告诉我。 第一个程序 hello laya显示不出文本,只是显示一些之前表格,单选项之类的东西 dialog通过UIConfig设置UIConfig.closeDialogOnSide ...
来源: Laya_社区 发布时间: 20180620
...如图三),代码如下: public drawScreenshot(): void { if (!this.tempTexture2D) { this.tempTexture2D = new Laya.Texture2D(1280,720); } if (!this.tempTexture) { this.tempTexture = new Laya.Texture(this.tempTexture2D); } // Laya.timer.once(110, this, function(){ let cans = Laya.Browser.document....
来源: Laya_社区 发布时间: 20191230