F
F
FogyX2021-09-18 17:16:54
Unity
FogyX, 2021-09-18 17:16:54

Scene loading issue in Unity 5.3?

I am making a game on Unity 5.3. There are two scenes - the scene with the game itself and the scene with the main menu. When loading in the scene editor with the game directly, everything is fine - all animations and controls work. But if I first load the scene with the menu, and through the playtest I load the scene with the game, then the picture freezes there, everything is static and lifeless, until I stop the playtest. I load the scene through LoadScene by pressing the button. Again, when loading the scene with the game directly, it works fine.
The code:

using UnityEngine;
using System.Collections;
using UnityEngine.SceneManagement;

public class MainMenuScript : MonoBehaviour {

  public void PlayPressed () {
    SceneManager.LoadScene ("MainLevel");
  }	
  public void ExitPressed () {
    Debug.Log("Exit");
    Application.Quit();

  }

}

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question