8 lines
95 B
Plaintext
8 lines
95 B
Plaintext
|
shader_type spatial;
|
||
|
|
||
|
uniform vec3 color : source_color;
|
||
|
|
||
|
void fragment() {
|
||
|
ALBEDO = color;
|
||
|
}
|