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 a2bd328 commit 7f34ffcCopy full SHA for 7f34ffc
examples/ecs/system_graph.rs
@@ -1,8 +1,11 @@
1
use bevy::prelude::*;
2
3
fn main() {
4
- // SystemGraphs can be used to specify explicit system dependencies.
5
- // Labels can be used alongside SystemGraphs to help specify dependency relationships.
+ // SystemGraphs can be used to specify explicit system dependencies without specifying
+ // explicit labels for each system.
6
+ //
7
+ // Labels can be used alongside SystemGraphs to help specify dependency relationships
8
+ // between graphs, betwen standalone systems, or between crate boundaries.
9
10
// These three systems will run sequentially one after another.
11
let sequential = SystemGraph::new();
0 commit comments