Version: 2022.2
言語: 日本語
public static AsyncOperation UnloadSceneAsync (int sceneBuildIndex);
public static AsyncOperation UnloadSceneAsync (string sceneName);
public static AsyncOperation UnloadSceneAsync (SceneManagement.Scene scene);
public static AsyncOperation UnloadSceneAsync (int sceneBuildIndex, SceneManagement.UnloadSceneOptions options);
public static AsyncOperation UnloadSceneAsync (string sceneName, SceneManagement.UnloadSceneOptions options);
public static AsyncOperation UnloadSceneAsync (SceneManagement.Scene scene, SceneManagement.UnloadSceneOptions options);

パラメーター

sceneBuildIndex Index of the Scene in BuildSettings.
sceneName Name or path of the Scene to unload.
scene 解放するシーン
options Scene unloading options.

戻り値

AsyncOperation 操作が終了したかを判別するには、AsyncOperation を使用します。

説明

Destroys all GameObjects associated with the given Scene and removes the Scene from the SceneManager.

The given Scene name can either be the full Scene path, the path shown in the Build Settings window or just the Scene name. If only the Scene name is given this will unload the first Scene in the list that matches. If you have multiple Scenes with same name but different paths, you should use the full Scene path. Examples of supported formats:
"Scene1"
"Scene2"
"Scenes/Scene3"
"Scenes/Others/Scene3"
"Assets/scenes/others/scene3.unity"

Note: This is case-insensitive and due to it being async there are no guarantees about completion time.
Note: Assets are currently not unloaded. In order to free up asset memory call Resources.UnloadUnusedAssets.
Note: It is not possible to UnloadSceneAsync if there are no scenes to load. For example, a project that has a single scene cannot use this static member.