//Release is fired when the previous state is pressed and the current state is released
 public void ActiveAbilityOnRelease(InputState input)
 {
     if (_items.Count > 0 && _toolAbilities != null)//Only select ability if tool inventory has equipped tool
     {
         _toolAbilities.ActiveAbilityOnRelease(input);
     }
 }