grounders-slowjam-2024/player/player_color.gdshader
2024-06-04 10:40:01 -06:00

8 lines
159 B
Text

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