1
0
mirror of https://github.com/jugeeya/UltimateTrainingModpack.git synced 2025-07-09 04:34:05 +00:00

Refine Mash Trigger Distances ()

Fixes 
This commit is contained in:
gnaomo
2022-11-11 01:26:45 +00:00
committed by GitHub
parent d0c7a106ca
commit 6466918f7b

@ -9,9 +9,9 @@ use crate::training::shield;
use smash::app::{self, lua_bind::*};
use smash::lib::lua_const::*;
const DISTANCE_CLOSE_THRESHOLD: f32 = 10.0;
const DISTANCE_MID_THRESHOLD: f32 = 50.0;
const DISTANCE_FAR_THRESHOLD: f32 = 100.0;
const DISTANCE_CLOSE_THRESHOLD: f32 = 16.0;
const DISTANCE_MID_THRESHOLD: f32 = 37.0;
const DISTANCE_FAR_THRESHOLD: f32 = 64.0;
static mut CURRENT_AERIAL: Action = Action::NAIR;
static mut QUEUE: Vec<Action> = vec![];