50 releases
Uses new Rust 2024
new 0.17.2 | Oct 4, 2025 |
---|---|
0.17.0 | Sep 30, 2025 |
0.16.1 | May 30, 2025 |
0.16.0-rc.3 | Mar 31, 2025 |
0.3.0 | Nov 3, 2020 |
#272 in Audio
172,095 downloads per month
Used in 53 crates
(6 directly)
6.5MB
117K
SLoC
Audio support for the game engine Bevy
fn main() {
App::new()
.add_plugins((MinimalPlugins, AssetPlugin::default(), AudioPlugin::default()))
.add_systems(Startup, play_background_audio)
.run();
}
fn play_background_audio(asset_server: Res<AssetServer>, mut commands: Commands) {
commands.spawn((
AudioPlayer::new(asset_server.load("background_audio.ogg")),
PlaybackSettings::LOOP,
));
}
Bevy Audio
Dependencies
~17–51MB
~852K SLoC