grounders-slowjam-2024/player/player_color.gdshader

9 lines
159 B
Plaintext
Raw Permalink Normal View History

2024-06-04 10:40:01 -06:00
shader_type spatial;
instance uniform vec3 color : source_color;
void fragment() {
ALBEDO = color;
// Called for every pixel the material is visible on.
}