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 Clone for AlphaMode
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for AlphaMode
[src]

impl Debug for AlphaMode
[src]

[src]

Formats the value using the given formatter.

impl Default for AlphaMode
[src]