Enum gltf::material::AlphaMode [] [src]

pub enum AlphaMode {
    Opaque,
    Mask,
    Blend,
}

The alpha rendering mode of a material.

Variants

The alpha value is ignored and the rendered output is fully opaque.

The rendered output is either fully opaque or fully transparent depending on the alpha value and the specified alpha cutoff value.

The rendered output is either fully opaque or fully transparent depending on the alpha value and the specified alpha cutoff value.

Trait Implementations

impl Default for AlphaMode
[src]

impl Copy for AlphaMode
[src]

impl Debug for AlphaMode
[src]

Formats the value using the given formatter.

impl Clone for AlphaMode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more