From 4c3d649bca420eaf09469bcf80d43ece0a6328d3 Mon Sep 17 00:00:00 2001 From: harudagondi Date: Wed, 18 Jan 2023 14:07:56 +0800 Subject: [PATCH] AudioOutput is actually a normal resource now --- crates/bevy_audio/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_audio/src/lib.rs b/crates/bevy_audio/src/lib.rs index f91c60a9b55ee..eb7e3b3222901 100644 --- a/crates/bevy_audio/src/lib.rs +++ b/crates/bevy_audio/src/lib.rs @@ -72,7 +72,7 @@ impl AddAudioSource for App { { self.add_asset::() .init_resource::>() - .init_non_send_resource::>() + .init_resource::>() .add_system_to_stage(CoreStage::PostUpdate, play_queued_audio_system::) } }