The animation plays at the start however when i leave the scene and come back, the animation does not play. It’s marked as legacy and i’ve tried to use code:
public GameObject The_Cam;
void Start()
{
Screen.SetResolution (1920, 1080, true);
The_Cam.GetComponent<Animation>().Play();
}
ignore the Screen.SetResolution (1920, 1080);
I’be used the animator component and used the animation component but both does not work.
The animation is on a camera
And if you were to use Animator instead, which I would recommend, you pass it the name of the state (not the animation). The_Cam.GetComponent<Animator>().Play("StateName");
– UnityCoachI've tried the two above and both don't work. The top one comes as True but still doesn't play the animation and the second does nothing for some reason. I've tried the last one with the animator and does not work for some reason.
– The-Gaming-Seed