grounders-slowjam-2024/player/player_color.gdshader

9 lines
159 B
Plaintext

shader_type spatial;
instance uniform vec3 color : source_color;
void fragment() {
ALBEDO = color;
// Called for every pixel the material is visible on.
}