├── .DS_Store ├── .gitignore ├── README.md ├── example.coffee ├── joystick.coffee ├── module.json ├── package.json ├── src ├── ActionHandler.coffee ├── App.coffee ├── Background.coffee ├── Broadcaster.coffee ├── FocusSystem.coffee ├── Focusable.coffee ├── Gamepad.coffee ├── Grid.coffee ├── Transitions.coffee └── View.coffee ├── thumb.png └── webpack.config.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-joystick/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-joystick/HEAD/README.md -------------------------------------------------------------------------------- /example.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-joystick/HEAD/example.coffee -------------------------------------------------------------------------------- /joystick.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-joystick/HEAD/joystick.coffee -------------------------------------------------------------------------------- /module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-joystick/HEAD/module.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-joystick/HEAD/package.json -------------------------------------------------------------------------------- /src/ActionHandler.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-joystick/HEAD/src/ActionHandler.coffee -------------------------------------------------------------------------------- /src/App.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-joystick/HEAD/src/App.coffee -------------------------------------------------------------------------------- /src/Background.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-joystick/HEAD/src/Background.coffee -------------------------------------------------------------------------------- /src/Broadcaster.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-joystick/HEAD/src/Broadcaster.coffee -------------------------------------------------------------------------------- /src/FocusSystem.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-joystick/HEAD/src/FocusSystem.coffee -------------------------------------------------------------------------------- /src/Focusable.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-joystick/HEAD/src/Focusable.coffee -------------------------------------------------------------------------------- /src/Gamepad.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-joystick/HEAD/src/Gamepad.coffee -------------------------------------------------------------------------------- /src/Grid.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-joystick/HEAD/src/Grid.coffee -------------------------------------------------------------------------------- /src/Transitions.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-joystick/HEAD/src/Transitions.coffee -------------------------------------------------------------------------------- /src/View.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-joystick/HEAD/src/View.coffee -------------------------------------------------------------------------------- /thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-joystick/HEAD/thumb.png -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilwidlund/framer-joystick/HEAD/webpack.config.js --------------------------------------------------------------------------------