So we can make a smooth transition with animator easily
but can this be applied via script with something like Animator.Play?
For example, this code does not use any transition and just jumps right into the first keyframe of “2”
if (Input.GetMouseButtonDown(0)) {
GetComponent<Animator>().Play("2");
}
Thank you