negative.shader 140 B

12345678
  1. shader_type canvas_item;
  2. void fragment() {
  3. vec3 c = textureLod(SCREEN_TEXTURE, SCREEN_UV, 0.0).rgb;
  4. c = vec3(1.0) - c;
  5. COLOR.rgb = c;
  6. }