diff --git a/src/lib.rs b/src/lib.rs index 451c702..0a6bb12 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -10,12 +10,16 @@ pub fn run() { App::new() .insert_resource(AssetMetaCheck::Never) .add_plugins(wasm::get_plugins()) - .add_systems(Startup, setup) - .add_systems(Startup, audio::spawn_sound) - .add_systems(Update, update_time) - // .add_systems(Update, animate_transform) - .add_systems(Update, animate_rotation) - .add_systems(Update, animate_scale) + .add_systems(Startup, (setup, audio::spawn_sound)) + .add_systems( + Update, + ( + update_time, + animate_rotation, + animate_scale, + text_color_system, + ), + ) .run(); } @@ -86,3 +90,16 @@ fn animate_scale(time: Res