bevy_midix 3.0.0-rc2

Send/receive MIDI data in bevy with midix.
Documentation

bevy_MIDIx

Bevy plugin that uses midix, midir, and crossbeam.

Read from and write to MIDI devices!

Example

use bevy::prelude::*;
use bevy_midix::prelude::*;

App::new()
    .add_plugins(DefaultPlugins)
    .add_plugins(MidiPlugin::default())
    .run();

See /examples for details.

Acknowledgment

This crate HEAVILY borrows its documentation and types from bevy_midi. Please check them out if this crate doesn't suit your needs!