pub struct PbrMaterialDef {
pub name: String,
pub base_color: [f32; 4],
pub metallic: f32,
pub roughness: f32,
pub emissive: [f32; 3],
pub alpha_mode: MatAlphaMode,
pub double_sided: bool,
pub texture_paths: Vec<String>,
}Fields§
§name: String§base_color: [f32; 4]§metallic: f32§roughness: f32§emissive: [f32; 3]§alpha_mode: MatAlphaMode§double_sided: bool§texture_paths: Vec<String>Trait Implementations§
Source§impl Clone for PbrMaterialDef
impl Clone for PbrMaterialDef
Source§fn clone(&self) -> PbrMaterialDef
fn clone(&self) -> PbrMaterialDef
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PbrMaterialDef
impl RefUnwindSafe for PbrMaterialDef
impl Send for PbrMaterialDef
impl Sync for PbrMaterialDef
impl Unpin for PbrMaterialDef
impl UnsafeUnpin for PbrMaterialDef
impl UnwindSafe for PbrMaterialDef
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more