This commit is contained in:
2026-04-28 13:07:52 +07:00
parent 8e6643beaf
commit c2671e8e87
5 changed files with 187 additions and 30 deletions

View File

@@ -119,7 +119,11 @@ namespace OnlyScove.Scripts
public void OnCancel(InputAction.CallbackContext context)
{
if (context.performed) OnCancelEvent?.Invoke();
if (context.performed)
{
Debug.Log("[InputReader] Cancel Action Performed (ESC)!");
OnCancelEvent?.Invoke();
}
}
}
}