Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


EditorBuildSettingsScene

Represents entries in the Scenes list, as displayed in the Build Profiles window.
Read time 1 minuteLast updated 4 days ago

Definition

public class EditorBuildSettingsScene : IComparable

Remarks

This class contains the path of a Scene and an enabled flag that indicates whether the Scene is enabled in the Build Profiles window or not.
You can use this class in combination with EditorBuildSettings.scenes to populate the list of Scenes to include in the build via script. This is useful when you create custom editor scripts to automate your build pipeline.
See EditorBuildSettings.scenes for an example script. Additional Resources: BuildPipeline.BuildPlayer.

Properties

Property

Description

enabledWhether this Scene is enabled for inclusion in the build.
pathThe file path of the Scene.