pub enum Inherit {
Normal = 0,
OnlyTranslation = 1,
NoRotationOrReflection = 2,
NoScale = 3,
NoScaleOrReflection = 4,
Unknown = 99,
}Expand description
The inherited transform for how bones are affected by their parents.
See BoneData::inherit.
Variants§
Normal = 0
OnlyTranslation = 1
NoRotationOrReflection = 2
NoScale = 3
NoScaleOrReflection = 4
Unknown = 99
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Inherit
impl RefUnwindSafe for Inherit
impl Send for Inherit
impl Sync for Inherit
impl Unpin for Inherit
impl UnwindSafe for Inherit
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