bevy-rust-arcade

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.

arcade-cabinet

This plugin wraps the relevent Bevy gamepad events in more descriptive names specific to the arcade cabinet, according to the image below.

arcade-input-diagram

You can test these inputs without accessing the arcade machine by using an xbox controller, they are mapped accordingly to the buttons below.

xbox-diagram

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) { for event in arcadeinputevents.iter() { info!( "{:?} of {:?} is changed to {}", event.arcade_input, event.gamepad, event.value ); } }

```