diff --git a/pathtracer/src/render/mesh.rs b/pathtracer/src/render/mesh.rs index 7c3748b..32dd923 100644 --- a/pathtracer/src/render/mesh.rs +++ b/pathtracer/src/render/mesh.rs @@ -101,8 +101,8 @@ impl TryFrom for Mesh { // Material, or throw a LoadError ( UniformMaterial::new(LightProperties::new( - LinearColor::new(1.0, 0.0, 0.0), - LinearColor::new(0.0, 0.0, 0.0), + LinearColor::new(0.5, 0.5, 0.5), + LinearColor::new(0.1, 0.1, 0.1), None, )) .into(),