space-game001/resources/shaders/spark_web.fragment
2026-02-08 22:38:24 +03:00

9 lines
163 B
Plaintext

precision mediump float;
uniform sampler2D Texture;
varying vec2 texCoord;
void main()
{
vec4 color = texture2D(Texture,texCoord).rgba;
gl_FragColor = color;
}