From 2ab8ca293f9548238b22d96d4fd88ec93d6b2431 Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 19 May 2024 17:47:37 +0200 Subject: refactor(engine): make Material non-exhaustive & fields public --- engine/src/material.rs | 68 +++++++------------------------------------------- 1 file changed, 9 insertions(+), 59 deletions(-) (limited to 'engine/src/material.rs') diff --git a/engine/src/material.rs b/engine/src/material.rs index f71cee5..5e360cd 100644 --- a/engine/src/material.rs +++ b/engine/src/material.rs @@ -5,67 +5,17 @@ use crate::data_types::dimens::Dimens; use crate::texture::{Id as TextureId, Texture}; #[derive(Debug, Clone, Component)] +#[non_exhaustive] pub struct Material { - ambient: Color, - diffuse: Color, - specular: Color, - ambient_map: TextureId, - diffuse_map: TextureId, - specular_map: TextureId, - textures: Vec, - shininess: f32, -} - -impl Material -{ - #[must_use] - pub fn ambient(&self) -> &Color - { - &self.ambient - } - - #[must_use] - pub fn diffuse(&self) -> &Color - { - &self.diffuse - } - - #[must_use] - pub fn specular(&self) -> &Color - { - &self.specular - } - - #[must_use] - pub fn ambient_map(&self) -> &TextureId - { - &self.ambient_map - } - - #[must_use] - pub fn diffuse_map(&self) -> &TextureId - { - &self.diffuse_map - } - - #[must_use] - pub fn specular_map(&self) -> &TextureId - { - &self.specular_map - } - - #[must_use] - pub fn textures(&self) -> &[Texture] - { - &self.textures - } - - #[must_use] - pub fn shininess(&self) -> f32 - { - self.shininess - } + pub ambient: Color, + pub diffuse: Color, + pub specular: Color, + pub ambient_map: TextureId, + pub diffuse_map: TextureId, + pub specular_map: TextureId, + pub textures: Vec, + pub shininess: f32, } /// [`Material`] builder. -- cgit v1.2.3-18-g5258