[][src]Module bevy_app::stage

The names of the default App stages

Constants

EVENT_UPDATE

Name of app stage that updates events. Generally this should run before UPDATE

FIRST

Name of app stage that runs before all other app stages

LAST

Name of app stage that runs after all other app stages

POST_UPDATE

Name of app stage responsible for processing the results of UPDATE. Runs after UPDATE.

PRE_UPDATE

Name of app stage responsible for performing setup before an update. Runs before UPDATE.

UPDATE

Name of app stage responsible for doing most app logic. Systems should be registered here by default.