mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Fix outdated comment referencing CoreSet (#10294)
# Objective Fix a comment that is referencing `CoreSet::UpdateFlush` which no longer exists. ## Solution Delete some words. Write some new words.
This commit is contained in:
parent
b208388af9
commit
7ca0a307f6
1 changed files with 3 additions and 3 deletions
|
@ -2,9 +2,9 @@
|
|||
//! to flush commands added by systems that have already run,
|
||||
//! but have not had their buffers applied yet.
|
||||
//!
|
||||
//! This is useful when you don't want to wait until the next flush set
|
||||
//! automatically added by Bevy (usually `CoreSet::UpdateFlush`, for systems
|
||||
//! added to `CoreSet::Update`) but want to flush commands immediately.
|
||||
//! This is useful when you don't want to wait until the next time Bevy
|
||||
//! automatically flushes commands (by default, after all systems have run in any
|
||||
//! particular schedule) but want to flush commands immediately.
|
||||
//!
|
||||
//! It is important that systems are ordered correctly with respect to
|
||||
//! `apply_deferred`, to avoid surprising non-deterministic system execution order.
|
||||
|
|
Loading…
Reference in a new issue