We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb08292 commit eb9ad8dCopy full SHA for eb9ad8d
crates/bevy_ecs/src/system/system.rs
@@ -70,7 +70,11 @@ pub trait System: Send + Sync + 'static {
70
/// Runs the system directly on the world, initializing the world correctly;
71
/// immediately applying buffers (such as `Commands`) modified by its system parameters
72
///
73
- /// Use () as the `input` parameter for systems which do not take any chained input
+ /// Use () as the `input` parameter for systems which do not take any chained input.
74
+ ///
75
+ /// Only one system will run at a time when executed in this way;
76
+ /// use a [`Schedule`] (or a custom abstraction created with [`run_unsafe`])
77
+ /// when system parallelism is desired.
78
79
/// # Examples
80
/// ```rust
0 commit comments