大约有 34 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0030 秒)
...3 u_FogColor; #endif #endif void main() { #ifdef RENDERMODE_MESH gl_FragColor=v_MeshColor; #else gl_FragColor=vec4(1.0); #endif #ifdef DIFFUSEMAP if(v_Discard!=0.0) discard; #ifdef TINTCOLOR gl_FragColor*=texture2D(u_texture,v_TextureCoordinate)*u_Tintc...
来源: Laya_社区 发布时间: 20190802
请问为什么我在ps内设置gl_FragColor的Alpha值,并没有效果呢 var ps: string ="#ifdef FSHIGHPRECISION\nprecision highp float;\n" + "#else\nprecision mediump float;\n" + "#endif\n\n" + "#include \"LightHelper.glsl\";\n\n" + "uniform sampler2D u_texture;\n" + "varying vec2 v_Texcoor...
来源: Laya_社区 发布时间: 20171226
...endif\n\n\nvoid main()\n{ \n #ifdef RENDERMODE_MESH\n gl_FragColor=v_MeshColor;\n #else\n gl_FragColor=vec4(1.0); \n #endif\n \n #ifdef DIFFUSEMAP\n if(v_Discard!=0.0)\n discard;\n #ifdef TINTCOLOR\n ...
来源: Laya_社区 发布时间: 20190412
shader里面没有支持gl_PointCoord吗? gl_FragColor = vec4(gl_PointCoord, 0.0, 1.0); 结果全屏都是一个黄色 2017-11-24 3 条评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Monica - 知识达人 赞同来自...
来源: Laya_社区 发布时间: 20171124
...c4 color1 = texture2D(u_DiffuseTexture1, v_Texcoord0 * u_DiffuseScale1);\n gl_FragColor.xyz = color1.xyz * splatAlpha.r;\n #endif\n #ifdef CUSTOM_DETAIL_NUM2\n vec4 splatAlpha = texture2D(u_SplatAlphaTexture, v_Texcoord0);\n vec4 color1 = texture2D(u_DiffuseTexture1, v_Texcoord0 * u_DiffuseScale1);\...
来源: Laya_示例 发布时间: 20241119
... u_StartColor; \n" + "uniform vec4 u_EndColor; \n" + "void main() { \n" + "gl_FragColor = mix(u_StartColor, u_EndColor, 1);\n" + "};"; this._setColor(Laya.VertexElementUsage.STARTCOLOR0,new Laya.Vector4(1,0,0,1)); this._setColor(Laya.VertexElementUsage.ENDCOLOR0,new Laya.Vector4(0,0,1,1)); var custo...
来源: Laya_社区 发布时间: 20180316
...; void main() { vec3 finalColor = u_OutlineColor.rgb * u_OutlineLightness; gl_FragColor = vec4(finalColor,0.0); } ``` ##### 第二个Pass使用的着色器: 顶点着色器 `outline02.vs` 代码如下: ```c++ #include "Lighting.glsl"; attribute vec4 a_Position; attribute vec2 a_Texcoord0; unifor...
来源: Laya2.0_文档 发布时间: 20210714
...#else precision mediump float; #endif varying vec3 v_Normal; void main() { gl_FragColor = vec4(1.0, 1.0, 1.0, 1.0); }` var base_vs = ` attribute vec4 a_Position; attribute vec2 a_Texcoord; attribute vec3 a_Normal; varying vec2 v_Texcoord; varying vec3 v_Normal; uniform mat4 u_MvpMatrix; uniform mat4...
来源: Laya_社区 发布时间: 20180925
...ya/d3/shader/files/PixelSimpleTextureSkinnedMesh.ps中void main方法中的gl_FragColor=texColor*v_Color改为gl_FragColor=texColor,即可忽略制作模型中设置的顶点色! 谢谢使用,如有问题,随时反馈!附最终效果图。 2016-10-21 3 1 分享 微博 QZONE 微信 cuixu...
来源: Laya_社区 发布时间: 20161021
...中调节透明度没有效果 vec4 c = texture2D(u_MainTex, uv); c.a = 0; gl_FragColor = c; 2019-10-17 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 缨 赞同来自: 请使用float而不是int,把0改成0.0...
来源: Laya_社区 发布时间: 20191017