pub enum Keyframes {
Translation(Vec<Vec3>),
Rotation(Vec<Quat>),
Scale(Vec<Vec3>),
Weights(Vec<f32>),
Explosion,
}Expand description
Raw animation data. Unionized.
Variants§
Translation(Vec<Vec3>)
Translation raw data.
Rotation(Vec<Quat>)
Rotation raw data.
Scale(Vec<Vec3>)
Scale raw data.
Weights(Vec<f32>)
Morph Target Weights raw data.
Explosion
An absolute failure that shows something blew up.
Auto Trait Implementations§
impl Freeze for Keyframes
impl RefUnwindSafe for Keyframes
impl Send for Keyframes
impl Sync for Keyframes
impl Unpin for Keyframes
impl UnsafeUnpin for Keyframes
impl UnwindSafe for Keyframes
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more