Version: 2019.3
public static AsyncOperation LoadSceneAsyncInPlayMode (string path, SceneManagement.LoadSceneParameters parameters);

パラメーター

pathPath to Scene to load.
parametersParameters to apply to loading. See LoadSceneParameters.

戻り値

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

説明

This method allows you to load a Scene during playmode in the editor, without requiring the Scene to be included in the Build Settings Scene list.

The use case for this is to emulate Asset bundles while loading scenes in play mode in the editor. When including a Scene in an asset bundle, you don't add the Scene to build settings. This means you can't load the Scene during play mode using the normal LoadSceneAsync method. Using this method instead of LoadSceneAsync allows you to load the Scene during play mode without requiring it to be in the Build Settings Scene list. This means your code needs to detect whether the game is running in the editor or not, and use this method (LoadSceneAsyncInPlayMode) when in the editor, and LoadSceneAsync when in the built version.