Version: 2017.3

EditorBuildSettingsScene

class in UnityEditor

매뉴얼로 전환

설명

This class is used for 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 wether the scene is enabled in the BuildSettings 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 creating custom editor scripts to automate your build pipeline.

See EditorBuildSettings.scenes for an example script.

변수

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.