bevy_osc 0.6.0

Send and receive OSC data to and from bevy and other programs or controllers.
Documentation
1
2
3
4
5
6
7
8
9
10
use bevy::prelude::*;
use bevy_osc::Osc;

// Uses default behavior, logs the 5 latest osc messages
fn main() {
    App::new()
        .add_plugins(DefaultPlugins)
        .add_plugins(Osc)
        .run();
}