Pixel-Composer/shaders/sh_default/sh_default.fsh

7 lines
137 B
Plaintext
Raw Normal View History

2023-06-25 20:12:17 +02:00
varying vec2 v_vTexcoord;
varying vec4 v_vColour;
2023-09-15 20:12:02 +02:00
void main() {
2023-12-13 11:09:06 +01:00
gl_FragColor = v_vColour * texture2D( gm_BaseTexture, v_vTexcoord );
2023-06-25 20:12:17 +02:00
}