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

Leave a Reply