mirror of
https://github.com/jugeeya/UltimateTrainingModpack.git
synced 2024-11-28 04:44:06 +00:00
parent
1fbf9c96c9
commit
743d5dbce0
1 changed files with 11 additions and 4 deletions
|
@ -220,6 +220,13 @@ impl LedgeOption {
|
||||||
_ => return None,
|
_ => return None,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
const fn default() -> LedgeOption {
|
||||||
|
// Neutral,Roll,Jump,Attack (everything except wait)
|
||||||
|
LedgeOption::NEUTRAL
|
||||||
|
.union(LedgeOption::ROLL)
|
||||||
|
.union(LedgeOption::JUMP)
|
||||||
|
.union(LedgeOption::ATTACK)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
extra_bitflag_impls! {LedgeOption}
|
extra_bitflag_impls! {LedgeOption}
|
||||||
|
@ -1195,16 +1202,16 @@ pub static DEFAULTS_MENU: TrainingModpackMenu = TrainingModpackMenu {
|
||||||
clatter_strength: ClatterFrequency::None,
|
clatter_strength: ClatterFrequency::None,
|
||||||
crouch: OnOff::Off,
|
crouch: OnOff::Off,
|
||||||
di_state: Direction::empty(),
|
di_state: Direction::empty(),
|
||||||
falling_aerials: BoolFlag::empty(),
|
falling_aerials: BoolFlag::FALSE,
|
||||||
fast_fall_delay: Delay::empty(),
|
fast_fall_delay: Delay::empty(),
|
||||||
fast_fall: BoolFlag::empty(),
|
fast_fall: BoolFlag::FALSE,
|
||||||
follow_up: Action::empty(),
|
follow_up: Action::empty(),
|
||||||
frame_advantage: OnOff::Off,
|
frame_advantage: OnOff::Off,
|
||||||
full_hop: BoolFlag::empty(),
|
full_hop: BoolFlag::TRUE,
|
||||||
hitbox_vis: OnOff::On,
|
hitbox_vis: OnOff::On,
|
||||||
input_delay: Delay::D0,
|
input_delay: Delay::D0,
|
||||||
ledge_delay: LongDelay::empty(),
|
ledge_delay: LongDelay::empty(),
|
||||||
ledge_state: LedgeOption::all(),
|
ledge_state: LedgeOption::default(),
|
||||||
mash_state: Action::empty(),
|
mash_state: Action::empty(),
|
||||||
mash_triggers: MashTrigger::default(),
|
mash_triggers: MashTrigger::default(),
|
||||||
miss_tech_state: MissTechFlags::all(),
|
miss_tech_state: MissTechFlags::all(),
|
||||||
|
|
Loading…
Reference in a new issue