Added block animation, script, and keybind. Still need to add animation transitions/triggers.
This commit is contained in:
djkellerman
2025-01-31 11:27:03 -05:00
parent bbaebadbed
commit 36815eb876
8 changed files with 3061 additions and 6 deletions

View File

@@ -33,4 +33,9 @@ public class AnimationPlayer : MonoBehaviour
{
animator.SetTrigger("punch");
}
public void Block()
{
animator.SetTrigger("Block");
}
}