mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-04 15:00:09 +01:00
9 lines
157 B
GLSL
9 lines
157 B
GLSL
shader_type canvas_item;
|
|
|
|
uniform float amount : hint_range(0.0, 5.0);
|
|
|
|
void fragment() {
|
|
|
|
COLOR.rgb = textureLod(SCREEN_TEXTURE, SCREEN_UV, amount).rgb;
|
|
}
|