Struct amethyst_renderer::JointTransforms[][src]

pub struct JointTransforms {
    pub skin: Entity,
    pub matrices: Vec<[[f32; 4]; 4]>,
}

Transform storage for the skin, should be attached to all mesh entities that use a skin

Fields

Skin entity

The current joint matrices

Trait Implementations

impl Debug for JointTransforms
[src]

Formats the value using the given formatter. Read more

impl Clone for JointTransforms
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Component for JointTransforms
[src]

Associated storage type for this component.

Auto Trait Implementations