├── .gitignore ├── Gruntfile.js ├── README.md ├── dist ├── phaser-scrollable.js └── phaser-scrollable.min.js ├── lightworld_large.gif ├── package.json ├── phaser.min.js ├── scrollable-kinetic.html └── src └── phaser-scrollable.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueicecold/phaser-scrollable/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueicecold/phaser-scrollable/HEAD/README.md -------------------------------------------------------------------------------- /dist/phaser-scrollable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueicecold/phaser-scrollable/HEAD/dist/phaser-scrollable.js -------------------------------------------------------------------------------- /dist/phaser-scrollable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueicecold/phaser-scrollable/HEAD/dist/phaser-scrollable.min.js -------------------------------------------------------------------------------- /lightworld_large.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueicecold/phaser-scrollable/HEAD/lightworld_large.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueicecold/phaser-scrollable/HEAD/package.json -------------------------------------------------------------------------------- /phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueicecold/phaser-scrollable/HEAD/phaser.min.js -------------------------------------------------------------------------------- /scrollable-kinetic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueicecold/phaser-scrollable/HEAD/scrollable-kinetic.html -------------------------------------------------------------------------------- /src/phaser-scrollable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/trueicecold/phaser-scrollable/HEAD/src/phaser-scrollable.js --------------------------------------------------------------------------------