using UnityEngine; public class StartSceneTransition : MonoBehaviour { Animator animator; void Start() { animator = GetComponent(); animator.SetTrigger("start1"); } }