//! This example illustrates how to load and play an audio file, and control where the sounds seems to come from. use bevy::prelude::*; fn main() { App::new() .add_plugins(DefaultPlugins) .add_systems(Startup, setup) .add_systems(Update, update_positions) .run(); } fn setup( mut commands: Commands, asset_server: Res, audio: Res