Version: 5.5
public static bool CloseScene (SceneManagement.Scene scene, bool removeScene);

パラメーター

scene 閉じる/削除するシーン
removeScene シーンを閉じた後に削除するかを表す bool フラグ

戻り値

bool シーンが閉じた/削除された場合 true を返します。

説明

Close the Scene. If removeScene flag is true, the closed Scene is also removed from EditorSceneManager.

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

public class ExampleClass { void Example() { EditorSceneManager.CloseScene(SceneManager.GetSceneByName("Title Screen"), true); } }