Question by
anonymousNewOne · Apr 08, 2016 at 06:48 AM ·
scene
Scene Loading without lights
is used SceneManager.LoadScene(0); to reload my scene after the game ends but it restarts with my directional lights off. How can I fix this? I put 0 in the LoadScene() because I only have 1 scene.
Comment
may be it will bug of unity or you are making light off from script
but for solution you can do is
manually make light on when scene load
Awake() { yourlight.GetComponent ().enabled = true; }
Your answer
