[][src]Struct gltf_json::material::PbrMetallicRoughness

pub struct PbrMetallicRoughness {
    pub base_color_factor: PbrBaseColorFactor,
    pub base_color_texture: Option<Info>,
    pub metallic_factor: StrengthFactor,
    pub roughness_factor: StrengthFactor,
    pub metallic_roughness_texture: Option<Info>,
    pub extensions: Option<PbrMetallicRoughness>,
    pub extras: Extras,
}

A set of parameter values that are used to define the metallic-roughness material model from Physically-Based Rendering (PBR) methodology.

Fields

base_color_factor: PbrBaseColorFactor

The material's base color factor.

base_color_texture: Option<Info>

The base color texture.

metallic_factor: StrengthFactor

The metalness of the material.

roughness_factor: StrengthFactor

The roughness of the material.

  • A value of 1.0 means the material is completely rough.
  • A value of 0.0 means the material is completely smooth.
metallic_roughness_texture: Option<Info>

The metallic-roughness texture.

This texture has two components:

The metalness values are sampled from the B channel. The roughness values are sampled from the G channel. These values are linear. If other channels are present (R or A), they are ignored for metallic-roughness calculations.

extensions: Option<PbrMetallicRoughness>

Extension specific data.

extras: Extras

Optional application specific data.

Trait Implementations

impl Validate for PbrMetallicRoughness[src]

impl Clone for PbrMetallicRoughness[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for PbrMetallicRoughness[src]

impl Debug for PbrMetallicRoughness[src]

impl Serialize for PbrMetallicRoughness[src]

impl<'de> Deserialize<'de> for PbrMetallicRoughness where
    PbrMetallicRoughness: Default
[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]