mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2024-12-23 14:06:50 +01:00
7 lines
131 B
Plaintext
7 lines
131 B
Plaintext
|
shader_type canvas_item;
|
||
|
|
||
|
void fragment() {
|
||
|
vec3 c = textureLod(SCREEN_TEXTURE, SCREEN_UV, 0.0).rgb;
|
||
|
COLOR.rgb = normalize(c);
|
||
|
}
|