pub enum DJType {
Normal(f32),
Multiple([f32; 5]),
AnimationMapped,
}Variants§
Normal(f32)
Multiple([f32; 5])
Accounts for jiggs/kirby 5 jumps
AnimationMapped
DJC characters (and jigg’s h speed on double jump) are animation mapped, meaning any in-game value for these
is irrelevant. This serves as the appropriate None type
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DJType
impl RefUnwindSafe for DJType
impl Send for DJType
impl Sync for DJType
impl Unpin for DJType
impl UnwindSafe for DJType
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