Home - TBubba/EnhancedInput GitHub Wiki

Welcome to the EnhancedInput wiki!

#Download# [Insert downloads here]

#Getting started# Get EnhancedInput up and running with just a few lines of code.

--

Initialize the extension.
Call these functions once at the beginning of the game.

ei_init();
ei_buffer_init();
ei_hotkeys_init();

Tip: Create event of a controller object (if you have one).
Note: The buffer and hotkeys are both optional but recommended.

--

Update the buffer
Call this function once each step.

ei_buffer_update();

Tip: Begin step event of the same controller object.
Note: Buffer must be initialized before updating.

--

And that's it. EhancedInput should now be ready to use.

#Examples#