# Objective - Fixes https://github.com/bevyengine/bevy/issues/9250 ## Changelog - Move scene spawner systems to a new SpawnScene schedule which is after Update and before PostUpdate (schedule order: [PreUpdate][Update][SpawnScene][PostUpdate]) ## Migration Guide - Move scene spawner systems to a new SpawnScene schedule which is after Update and before PostUpdate (schedule order: [PreUpdate][Update][SpawnScene][PostUpdate]), you might remove system ordering code related to scene spawning as the execution order has been guaranteed by bevy engine. --------- Co-authored-by: Hennadii Chernyshchyk <genaloner@gmail.com> |
||
|---|---|---|
| .. | ||
| app.rs | ||
| ci_testing.rs | ||
| lib.rs | ||
| main_schedule.rs | ||
| plugin_group.rs | ||
| plugin.rs | ||
| schedule_runner.rs | ||