Enum RenderLayerDefaultState
#[repr(u32)]
pub enum RenderLayerDefaultState {
Disabled = 0,
Enabled = 1,
AlwaysEnabled = 2,
}Expand description
The state in which the RenderLayer will be registered with.
Variants§
Disabled = 0
Register the RenderLayer as disabled, the user must then enable it via the UI.
This is the default registration value.
Enabled = 1
Register the RenderLayer as enabled, the user must then disable it via the UI.
AlwaysEnabled = 2
Use this if you do not want the render layer to be adjustable via the UI.