Enum gltf_utils::Outputs [] [src]

pub enum Outputs<'a> {
    Translations(AccessorIter<'a, [f32; 3]>),
    Rotations(Rotations<'a>),
    Scales(AccessorIter<'a, [f32; 3]>),
    Weights(MorphWeights<'a>),
}

Animation output sampler values.

Variants

XYZ translations of type [f32; 3].

Rotation animations.

XYZ scales of type [f32; 3].

Morph target animations.

Trait Implementations

Auto Trait Implementations

impl<'a> Send for Outputs<'a>

impl<'a> Sync for Outputs<'a>