build update

This commit is contained in:
Nikolai Fesenko
2025-08-14 18:07:45 +02:00
parent 248ef3b912
commit 8ef9cf5971
6 changed files with 77 additions and 26 deletions

View File

@@ -1,11 +1,13 @@
shader_type spatial;
uniform float alpha;
uniform vec3 color;
void vertex() {
// Called for every vertex the material is visible on.
}
void fragment() {
ALBEDO = vec3(0,1.0,0);
ALBEDO = color;
ALPHA = alpha;
}