Version: 2017.1
public static SceneManagement.Scene CreateScene (string sceneName);

파라미터

sceneName The name of the new scene. It cannot be empty or null, or same as the name of the existing scenes.

반환

Scene A reference to the new scene that was created, or an invalid scene if creation failed.

설명

Create an empty new scene at runtime with the given name.

The new scene will be opened additively into the hierarchy alongside any existing scenes that are currently open. The path of the new scene will be empty. This function is for creating scenes at runtime. To create a scene at edit-time (for example, when making an editor script or tool which needs to create scenes), use EditorSceneManager.NewScene.

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

public class ExampleClass : MonoBehaviour { Scene newScene = SceneManager.CreateScene("My New Scene"); }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961