您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
25 行
590 B
25 行
590 B
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
/// <summary>
|
|
/// This script loads the initial Scene, to allow to start the game from any gameplay Scene
|
|
/// </summary>
|
|
public class EditorInitialisationLoader : MonoBehaviour
|
|
{
|
|
#if UNITY_EDITOR
|
|
public GameSceneSO initializationScene;
|
|
|
|
void Start()
|
|
{
|
|
for (int i = 0; i < SceneManager.sceneCount; ++i)
|
|
{
|
|
Scene scene = SceneManager.GetSceneAt(i);
|
|
if (scene.name == initializationScene.sceneName)
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
SceneManager.LoadSceneAsync(initializationScene.sceneName, LoadSceneMode.Additive);
|
|
}
|
|
#endif
|
|
}
|