54 releases
Uses new Rust 2024
| 0.18.0 | Jan 13, 2026 |
|---|---|
| 0.18.0-rc.2 | Dec 30, 2025 |
| 0.17.3 | Nov 17, 2025 |
| 0.16.1 | May 30, 2025 |
| 0.3.0 | Nov 3, 2020 |
#332 in Audio
169,333 downloads per month
Used in 61 crates
(6 directly)
7MB
122K
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
~23–59MB
~1M SLoC