Struct amethyst_animation::SkinnablePrefab[][src]

pub struct SkinnablePrefab {
    pub skin: Option<SkinPrefab>,
    pub joint: Option<JointPrefab>,
    pub joint_transforms: Option<JointTransformsPrefab>,
}

PrefabData for full skinning support

Fields

Place Skin on the Entity

Place Joint on the Entity

Place JointTransforms on the Entity

Trait Implementations

impl Clone for SkinnablePrefab
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for SkinnablePrefab
[src]

Returns the "default value" for a type. Read more

impl Debug for SkinnablePrefab
[src]

Formats the value using the given formatter. Read more

impl<'a> PrefabData<'a> for SkinnablePrefab
[src]

SystemData needed to perform the load

The result type returned by the load operation

Load the data for this prefab onto the given Entity Read more

Trigger asset loading for any sub assets. Read more

Auto Trait Implementations