Reputation: 11
SceneManager.LoadScene is not working in Unity version 4.6.1. even though I have put using UnityEngine.SceneManagement;
at the top of my script.
What is the problem here, and how can I resolve it?
Upvotes: 1
Views: 446
Reputation: 20030
SceneManager was introduced as part of Unity 5. It is not part of the 4.6 API. Look at Application.LoadLevel
instead.
Upvotes: 4