diff options
author | HampusM <hampus@hampusmat.com> | 2024-05-12 13:01:33 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-05-12 13:01:33 +0200 |
commit | 88ce3ed506277c881d9ef2a898ec9862f2a7b243 (patch) | |
tree | fb7ed3a45a91c68b4f564c303c9e9560e14fde59 /engine/src/material.rs | |
parent | 476baa27e3c14751808b38daa018612cf860555e (diff) |
fix(engine): make default material colors black
Diffstat (limited to 'engine/src/material.rs')
-rw-r--r-- | engine/src/material.rs | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/engine/src/material.rs b/engine/src/material.rs index c896084..880f689 100644 --- a/engine/src/material.rs +++ b/engine/src/material.rs @@ -7,9 +7,9 @@ use crate::texture::{Id as TextureId, Texture}; #[derive(Debug, Clone, Component)] pub struct Material { - ambient: Option<Color<f32>>, - diffuse: Option<Color<f32>>, - specular: Option<Color<f32>>, + ambient: Color<f32>, + diffuse: Color<f32>, + specular: Color<f32>, ambient_map: TextureId, diffuse_map: TextureId, specular_map: TextureId, @@ -20,21 +20,21 @@ pub struct Material impl Material { #[must_use] - pub fn ambient(&self) -> Option<&Color<f32>> + pub fn ambient(&self) -> &Color<f32> { - self.ambient.as_ref() + &self.ambient } #[must_use] - pub fn diffuse(&self) -> Option<&Color<f32>> + pub fn diffuse(&self) -> &Color<f32> { - self.diffuse.as_ref() + &self.diffuse } #[must_use] - pub fn specular(&self) -> Option<&Color<f32>> + pub fn specular(&self) -> &Color<f32> { - self.specular.as_ref() + &self.specular } #[must_use] @@ -206,9 +206,9 @@ impl Builder }); Material { - ambient: self.ambient.clone(), - diffuse: self.diffuse.clone(), - specular: self.specular.clone(), + ambient: self.ambient.unwrap_or_default(), + diffuse: self.diffuse.unwrap_or_default(), + specular: self.specular.unwrap_or_default(), ambient_map, diffuse_map, specular_map, |