Files
project-thor/Shaders/shirt.gdshader
2025-08-15 17:57:37 +02:00

16 lines
337 B
Plaintext

shader_type spatial;
uniform vec3 shirt_color;
void vertex() {
// Called for every vertex the material is visible on.
}
void fragment() {
ALBEDO = shirt_color;
}
//void light() {
// // Called for every pixel for every light affecting the material.
// // Uncomment to replace the default light processing function with this one.
//}