bevy_midix 4.0.0-alpha.0

The MIDI plugin for humans. Out-of-the-box soundfont synthesizer, commands, and input!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(feature = "assets")]
pub mod assets;
pub mod input;
#[cfg(feature = "synth")]
pub mod synth;

pub mod prelude {
    pub use crate::input::*;

    #[cfg(feature = "assets")]
    pub use crate::assets::*;

    #[cfg(feature = "synth")]
    pub use crate::synth::*;
}