9 lines
159 B
Plaintext
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.
|
||
|
}
|