Add rest of basic player animations

This commit is contained in:
Sweet Tini
2020-02-01 11:30:03 -05:00
parent 8f988754a8
commit 3b2c37d29c
8 changed files with 442 additions and 60 deletions

View File

@@ -95,11 +95,11 @@ public class Player : MonoBehaviour
{
if (Mathf.Abs(rigidBody.velocity.x) > Mathf.Epsilon)
{
animator.SetBool("IsRunning", true);
//animator.SetBool("IsRunning", true);
}
else
{
animator.SetBool("IsRunning", false);
//animator.SetBool("IsRunning", false);
}
}
}