bool AxisIsUsed(int num, bool inverted) { float min = 0.5f; if (num < 0) { return(false); } string name = InputAxis.FromInt(num); float input = Input.GetAxis(name); if (input > min && !inverted) { return(true); } if (input < -min && inverted) { return(true); } return(false); }