1.0.0 • Published 5 years ago

arrow-key-controller v1.0.0

Weekly downloads
3
License
ISC
Repository
github
Last release
5 years ago

Arrow Key Controller

Super simple controller designed for canvas games that only use the arrow keys. While an arrow key is pressed down, it is true;

To use:

import { Controller } from 'arrow-key-controller';

const controller = new Controller();

controller.init(); // adds event listener to document

controller.up; // false
controller.down; // false
controller.right; // false
controller.left; // false