This commit is contained in:
RochesterX
2025-04-18 20:11:19 -04:00
parent a7e181a900
commit ce741c87d5
450 changed files with 59358 additions and 963 deletions

View File

@@ -111,6 +111,10 @@ namespace Player
public void Punch()
{
animator.SetTrigger("punch");
if (!GetComponent<PlayerMovement>().IsPhysicallyGrounded())
{
AudioManager.Instance.PlaySound("Air Punch");
}
}
}
}