Skip to content

Commit

Permalink
Correct default roughness/metallic
Browse files Browse the repository at this point in the history
  • Loading branch information
mtsr committed Mar 5, 2021
1 parent 7c26a2a commit dd30399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_pbr/src/material.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ impl Default for StandardMaterial {
fn default() -> Self {
StandardMaterial {
albedo: Color::rgb(1.0, 1.0, 1.0),
pbr: Vec2::new(1.0, 0.95),
pbr: Vec2::new(0.01, 0.08),
albedo_texture: None,
unlit: false,
}
Expand Down

0 comments on commit dd30399

Please sign in to comment.