beter? splashscreen

This commit is contained in:
2023-02-07 23:54:24 +01:00
parent 4fb34f2ffc
commit 8b87322278
6 changed files with 89 additions and 15 deletions
+1 -3
View File
@@ -2,7 +2,5 @@ shader_type canvas_item;
uniform float opacity : hint_range(0,1);
void fragment() {
vec4 c = texture(TEXTURE, UV);
c.a *= opacity;
COLOR = c;
COLOR.a *= opacity;
}