Skip to content

Commit 7f34ffc

Browse files
james7132jak6jak
authored andcommitted
Use a more descriptive comment in SystemGraph example
1 parent a2bd328 commit 7f34ffc

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

examples/ecs/system_graph.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
use bevy::prelude::*;
22

33
fn main() {
4-
// SystemGraphs can be used to specify explicit system dependencies.
5-
// Labels can be used alongside SystemGraphs to help specify dependency relationships.
4+
// SystemGraphs can be used to specify explicit system dependencies without specifying
5+
// 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.
69

710
// These three systems will run sequentially one after another.
811
let sequential = SystemGraph::new();

0 commit comments

Comments
 (0)