14 lines
228 B
Text
14 lines
228 B
Text
shader_type spatial;
|
|
|
|
void vertex() {
|
|
// Called for every vertex the material is visible on.
|
|
}
|
|
|
|
void fragment() {
|
|
// Called for every pixel the material is visible on.
|
|
}
|
|
|
|
void light() {
|
|
DIFFUSE_LIGHT = vec3(1.0, 1.0, 1.0);
|
|
}
|