From c56adb1655cd6533e0abd197476db866308d397d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Fri, 15 Mar 2024 01:23:44 +0100 Subject: [PATCH] order systems in axes example --- examples/gizmos/axes.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/gizmos/axes.rs b/examples/gizmos/axes.rs index 41faff9a356b0..a7fe43319199e 100644 --- a/examples/gizmos/axes.rs +++ b/examples/gizmos/axes.rs @@ -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(); }