Implement Punch

This commit is contained in:
RochesterX
2025-01-17 12:57:43 -05:00
parent edce0c1702
commit 0824f3c99a
7 changed files with 476 additions and 215 deletions

View File

@@ -28,4 +28,9 @@ public class AnimationPlayer : MonoBehaviour
{
this.state = state;
}
public void Punch()
{
animator.SetTrigger("punch");
}
}