A plugin for the Bevy Engine that allows you to easily make your games compatible with Rust Arcade Machine. Learn more about the Rust Arcade project here.
This plugin wraps the relevent Bevy gamepad events in more descriptive names specific to the arcade cabinet, according to the image below.
You can test these inputs without accessing the arcade machine by using an xbox controller, they are mapped accordingly to the buttons below.
Below is some simple code from the input example to get you started.
```rust use bevy::prelude::*; use bevyrustarcade::{ArcadeInputEvent, RustArcadePlugin};
fn main() { App::new() .addplugins(DefaultPlugins) .addplugin(RustArcadePlugin) .addsystem(arcadeevent_system) .run(); }
// Read arcade input events
fn arcadeeventsystem(mut arcadeinputevents: EventReader
```