Bevy Input Map

Input Map decouples gameplay code from device specific input api. By converting user inputs from different input hardware into game specific actions, eg. keyboard "Space" or joystick "A" can be mapped to "Jump" Action. This improves the overall code quality, by keeping the gameplay code separate from input code.

Usage

Add to Cargo.toml dependencies [dependencies] bevy_prototype_input_map = "0.1"

In code ```rust fn main() { App::build() ... .addplugin(InputMapPlugin::default()) .addstartupsystem(setup.system()) .addsystem(system.system()) .run(); }

fn setup( mut inputmap: ResMut, ) { inputmap .bindkeyboardpressed(KeyCode::Return, "SHOOT") .bindmousemotion(Axis::YNegative, "AIMUP") .setdeadzone("AIMUP", 0.1) }

// system fn system(inputmap: Res) { if inputmap.isactionactive("SHOOT") { println!("Bang..."); } ```

*Check out examples

Example

Use commands

cargo run --example with_code

cargo run --example with_json

For Action Events Usage

cargo run --example withactionevents

Features

Repo

https://github.com/PradeepKumarRajamanickam/bevyinputmap/

Note* Latest commit on master branch might be unstable. Use the release tags if you are looking for stable commits or grab crate from crate.io

Bug Report

https://github.com/PradeepKumarRajamanickam/bevyinputmap/issues

Planned

Joystick Mapping

Depends on bevy input support for joystick

Release Notes

v0.1.4 (03 Oct, 2020)

v0.1.3 (18 Sept, 2020)

v0.1.2 (14 Sept, 2020)

v0.1.1 (7 Sept, 2020)

v0.1.0 (7 Sept, 2020)

Author

PradeepKumar Rajamanickam

Acknowledgments

Inspired by - Godot Input Mapper [https://godotengine.org/article/handling-axis-godot] - Unreal Action/Axis Mapping [https://docs.unrealengine.com/en-US/Gameplay/Input/index.html]