Tamo
Tamo

Reputation: 11

SceneManager.LoadScene does not work in Unity 4.6?

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

Answers (1)

Bart
Bart

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

Related Questions