1
0
Fork 0
mirror of https://github.com/jugeeya/UltimateTrainingModpack.git synced 2024-11-24 10:54:16 +00:00

Refine Mash Trigger Distances (#426)

Fixes #408
This commit is contained in:
gnaomo 2022-11-11 01:26:45 +00:00 committed by GitHub
parent d0c7a106ca
commit 6466918f7b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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![];