9 lines
159 B
Text
9 lines
159 B
Text
shader_type spatial;
|
|
render_mode specular_schlick_ggx;
|
|
|
|
void fragment() {
|
|
ALBEDO = vec3(255.0, 0.0, 0.0);
|
|
METALLIC = 0.9;
|
|
ROUGHNESS = 0.2;
|
|
ALPHA = 0.98;
|
|
}
|