splishy splashy

This commit is contained in:
2023-02-07 16:54:29 +01:00
parent dace1fa599
commit 4fb34f2ffc
67 changed files with 1063 additions and 102 deletions
+8
View File
@@ -0,0 +1,8 @@
shader_type canvas_item;
uniform float opacity : hint_range(0,1);
void fragment() {
vec4 c = texture(TEXTURE, UV);
c.a *= opacity;
COLOR = c;
}