doThrowType()

private void doThrowType(Vector3 distance)
    {
        if (distance.x < -6 || distance.x > 6)
        {
            animator.SetBool("longThrow", true);
        }
        else
        {
            animator.SetBool("throwing", true);
        }
    }


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *