Answers for "unity move object from one scene to another in editor"

C#
2

move to another scene unity

using UnityEngine.SceneManagement;
void Start(){
SceneManager.LoadScene(0/* the scene number*/);
}
Posted by: Guest on January-27-2021

Code answers related to "unity move object from one scene to another in editor"

C# Answers by Framework

Browse Popular Code Answers by Language