mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2024-12-21 13:56:50 +01:00
8 lines
156 B
GLSL
8 lines
156 B
GLSL
shader_type canvas_item;
|
|
|
|
void fragment() {
|
|
vec3 c = textureLod(SCREEN_TEXTURE, SCREEN_UV, 0.0).rgb;
|
|
c = mod(c + vec3(0.5), vec3(1.0));
|
|
COLOR.rgb = c;
|
|
}
|