pub struct CompressedAnimationCurve {
pub m_Path: String,
pub m_PostInfinity: i32,
pub m_PreInfinity: i32,
pub m_Slopes: PackedBitVector,
pub m_Times: PackedBitVector,
pub m_Values: PackedBitVector,
}
Expand description
CompressedAnimationCurve is a sub class of the Unity engine since version 3.4.0.
Fields§
§m_Path: String
§m_PostInfinity: i32
§m_PreInfinity: i32
§m_Slopes: PackedBitVector
§m_Times: PackedBitVector
§m_Values: PackedBitVector
Trait Implementations§
Source§impl Debug for CompressedAnimationCurve
impl Debug for CompressedAnimationCurve
Source§impl<'de> Deserialize<'de> for CompressedAnimationCurve
impl<'de> Deserialize<'de> for CompressedAnimationCurve
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CompressedAnimationCurve
impl RefUnwindSafe for CompressedAnimationCurve
impl Send for CompressedAnimationCurve
impl Sync for CompressedAnimationCurve
impl Unpin for CompressedAnimationCurve
impl UnwindSafe for CompressedAnimationCurve
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