UiSystem

Type Alias UiSystem 

Source
pub type UiSystem = UiSystems;
👎Deprecated since 0.17.0: Renamed to UiSystems.
Expand description

Deprecated alias for UiSystems.

Aliased Type§

pub enum UiSystem {
    Focus,
    Prepare,
    Propagate,
    Content,
    Layout,
    PostLayout,
    Stack,
}

Variants§

§

Focus

After this label, input interactions with UI entities have been updated for this frame.

Runs in PreUpdate.

§

Prepare

All UI systems in PostUpdate will run in or after this label.

§

Propagate

Propagate UI component values needed by layout.

§

Content

Update content requirements before layout.

§

Layout

After this label, the ui layout state has been updated.

Runs in PostUpdate.

§

PostLayout

UI systems ordered after UiSystems::Layout.

Runs in PostUpdate.

§

Stack

After this label, the UiStack resource has been updated.

Runs in PostUpdate.