Пример #1
0
    // Update is called once per frame
    void Update()
    {
        if (rb.velocity != new Vector2(0, 0))
        {
            if (rb.velocity.x < 0)
            {
                animator.SetFilpX(false);
            }
            if (rb.velocity.x > 0)
            {
                animator.SetFilpX(true);
            }

            animator.PlayAnimation("Walk", 0.1F);
        }
        else
        {
            animator.PlayAnimation("Idle", 0.1F);
        }
    }