hurrmmm/godot/Objects/balloon/balloon_shader.gdshader

10 lines
159 B
Plaintext
Raw Normal View History

2023-11-12 13:30:55 -07:00
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;
}