├── .gitignore ├── .npmrc ├── README.md ├── dist └── controllerkit.js ├── docs ├── demo │ ├── controllerkit.js │ ├── index.html │ └── main.js ├── index.html ├── logo.png └── main.css ├── package.json ├── rollup.config.js ├── src ├── InputSources │ ├── gamepad.ts │ ├── index.ts │ ├── keyboard.ts │ └── touch.ts ├── defaults.ts └── index.ts ├── tsconfig.json ├── types └── controllerkit.d.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | @OWNER:registry=https://npm.pkg.github.com -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/README.md -------------------------------------------------------------------------------- /dist/controllerkit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/dist/controllerkit.js -------------------------------------------------------------------------------- /docs/demo/controllerkit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/docs/demo/controllerkit.js -------------------------------------------------------------------------------- /docs/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/docs/demo/index.html -------------------------------------------------------------------------------- /docs/demo/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/docs/demo/main.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/docs/main.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/InputSources/gamepad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/src/InputSources/gamepad.ts -------------------------------------------------------------------------------- /src/InputSources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/src/InputSources/index.ts -------------------------------------------------------------------------------- /src/InputSources/keyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/src/InputSources/keyboard.ts -------------------------------------------------------------------------------- /src/InputSources/touch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/src/InputSources/touch.ts -------------------------------------------------------------------------------- /src/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/src/defaults.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/controllerkit.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/types/controllerkit.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZenithDevs/ControllerKit/HEAD/yarn.lock --------------------------------------------------------------------------------