This commit is contained in:
2023-09-07 01:21:05 -07:00
parent 379ef0189c
commit 4b840bbe7f
6 changed files with 495 additions and 51 deletions

View File

@@ -0,0 +1,8 @@
shader_type spatial;
uniform vec3 albedo : source_color;
varying float setAlpha;
void fragment() {
ALBEDO = albedo;
ALPHA = setAlpha;
}