Version: 2021.3
言語: 日本語

EditorBuildSettingsScene

class in UnityEditor

マニュアルに切り替える

説明

Represents entries in the Scenes list, as displayed in the Build Settings window. This class contains the Scene path of a Scene and an enabled flag that indicates whether the Scene is enabled in the Build Settings window or not.

You can use this class in combination with EditorBuildSettings.scenes to populate the list of Scenes included in the build via script. This is useful when you create custom editor scripts to automate your build pipeline.

スクリプト例は、EditorBuildSettings.scenes を参照してください。

変数

enabledWhether this Scene is enabled in the Build Settings window or not. See EditorBuildSettings.scenes for an example of how to use this class.See Also: EditorBuildSettingsScene, EditorBuildSettings.scenes.
pathThe file path of the Scene as listed in the Editor Build Settings Scene list. See EditorBuildSettings.scenes for an example of how to use this class.See Also: EditorBuildSettingsScene, EditorBuildSettings.scenes.