This commit is contained in:
2020-02-01 11:44:46 -05:00
15 changed files with 792 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);
}
}
}