Removed exception on OnInteract method

This commit is contained in:
OverflowNarhoym 2022-02-22 19:58:50 +01:00
parent 6a0dd5f498
commit eca7e130dd
1 changed files with 2 additions and 1 deletions

View File

@ -228,7 +228,8 @@ namespace Player
public void OnInteract(InputAction.CallbackContext context) public void OnInteract(InputAction.CallbackContext context)
{ {
if (_playerInteractableTrigger.IsCollided) if (_playerInteractableTrigger.IsCollided)
throw new NotImplementedException(); {
}
} }
public void OnClimb(InputAction.CallbackContext context) public void OnClimb(InputAction.CallbackContext context)