Files
escape/Objects/Splash.gdshader
2023-02-07 23:54:24 +01:00

7 lines
108 B
Plaintext

shader_type canvas_item;
uniform float opacity : hint_range(0,1);
void fragment() {
COLOR.a *= opacity;
}