bevy_mod_kira 0.2.0

A plugin that integrates the Kira audio library for use in the Bevy game engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod context;
mod plugins;
mod sound;
mod util;

pub use context::KiraContext;
pub use plugins::{
    debug::KiraDebugPlugin,
    events::{KiraPlaySoundEvent, KiraPlayingSounds},
    KiraPlugin,
};
pub use sound::{
    sound_types::{DynamicSoundHandle, KiraPlayable, KiraPlayingSound},
    static_sounds::{KiraStaticSoundAsset, KiraStaticSoundHandle, StaticSoundFileLoader},
};