pub struct Track {
pub target: TrackTarget,
pub time: Time,
pub value: Value,
}Expand description
The Track structure contains animation key data for a single Transformation or MorphWeight structure.
Fields§
§target: TrackTargetThe target transformation or MorphWeight this track applies to.
time: TimeThe time curve associated with this track.
value: ValueThe value curve associated with this track.
Auto Trait Implementations§
impl Freeze for Track
impl RefUnwindSafe for Track
impl Send for Track
impl Sync for Track
impl Unpin for Track
impl UnwindSafe for Track
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