Skip to content

Commit

Permalink
order systems in axes example
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Mar 15, 2024
1 parent d3d9cab commit c56adb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/gizmos/axes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fn main() {
App::new()
.add_plugins(DefaultPlugins)
.add_systems(Startup, setup)
.add_systems(Update, (move_cubes, draw_axes))
.add_systems(Update, (move_cubes, draw_axes).chain())
.run();
}

Expand Down

0 comments on commit c56adb1

Please sign in to comment.