I have the following code:
commands.spawn(
AudioBundle {
source: asset_server.load(MAIN_MENU_SONG),
settings: PlaybackSettings::LOOP.with_volume(Volume::new_relative(0.5)),
}
);
When using a .ogg file it works fine, but if I use an .mp3 file, there is no sound. No errors show up in the console either.
Did I do something wrong?