Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseLoads this SceneAsset when you start Play Mode.
If this property is set to a SceneAsset, Unity will load this SceneAsset instead of the scenes currently open in the Editor when you start Play Mode.
no example available in JavaScript
using UnityEditor; using UnityEditor.SceneManagement; using UnityEngine;
public class TestWindow : EditorWindow { void OnGUI() { // Use the Object Picker to select the start SceneAsset EditorSceneManager.playModeStartScene = (SceneAsset)EditorGUILayout.ObjectField(new GUIContent("Start Scene"), EditorSceneManager.playModeStartScene, typeof(SceneAsset), false);
// Or set the start Scene from code var scenePath = "Assets/Scene3.unity"; if (GUILayout.Button("Set start scene: " + scenePath)) SetPlayModeStartScene(scenePath); }
void SetPlayModeStartScene(string scenePath) { SceneAsset myWantedStartScene = AssetDatabase.LoadAssetAtPath<SceneAsset>(scenePath); if (myWantedStartScene != null) EditorSceneManager.playModeStartScene = myWantedStartScene; else Debug.Log("Could not find scene " + scenePath); }
[MenuItem("Test/Open")] static void Open() { GetWindow<TestWindow>(); } }
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information