mirror of
https://github.com/bevyengine/bevy
synced 2024-11-13 00:17:27 +00:00
Use PostCleanup naming
This commit is contained in:
parent
6c72d2b4bd
commit
898f01fb38
1 changed files with 2 additions and 2 deletions
|
@ -140,7 +140,7 @@ pub enum RenderSet {
|
|||
/// Final cleanup occurs: all entities will be despawned.
|
||||
///
|
||||
/// Runs after [`Cleanup`](RenderSet::Cleanup).
|
||||
FinalCleanup,
|
||||
PostCleanup,
|
||||
}
|
||||
|
||||
/// The main render schedule.
|
||||
|
@ -473,7 +473,7 @@ unsafe fn initialize_render_app(app: &mut App) {
|
|||
render_system,
|
||||
)
|
||||
.in_set(RenderSet::Render),
|
||||
World::clear_entities.in_set(RenderSet::FinalCleanup),
|
||||
World::clear_entities.in_set(RenderSet::PostCleanup),
|
||||
),
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue