├── .github └── FUNDING.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bower.json ├── dist ├── phaser-kinetic-scrolling-plugin.js └── phaser-kinetic-scrolling-plugin.min.js ├── examples ├── example_1.html ├── example_2.html ├── example_3.html ├── example_4.html ├── example_5.html ├── img │ └── zelda.png ├── index.html └── js │ ├── example_1.js │ ├── example_2.js │ ├── example_3.js │ ├── example_4.js │ ├── example_5.js │ ├── phaser-kinetic-scrolling-plugin.js │ └── phaser.min.js ├── gulpfile.js ├── package.json ├── src └── phaser-kinetic-scrolling-plugin.js └── typescript ├── README.md ├── phaser-kinetic-scrolling-plugin.d.ts └── typings.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea/ 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/bower.json -------------------------------------------------------------------------------- /dist/phaser-kinetic-scrolling-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/dist/phaser-kinetic-scrolling-plugin.js -------------------------------------------------------------------------------- /dist/phaser-kinetic-scrolling-plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/dist/phaser-kinetic-scrolling-plugin.min.js -------------------------------------------------------------------------------- /examples/example_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/examples/example_1.html -------------------------------------------------------------------------------- /examples/example_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/examples/example_2.html -------------------------------------------------------------------------------- /examples/example_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/examples/example_3.html -------------------------------------------------------------------------------- /examples/example_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/examples/example_4.html -------------------------------------------------------------------------------- /examples/example_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/examples/example_5.html -------------------------------------------------------------------------------- /examples/img/zelda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/examples/img/zelda.png -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/js/example_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/examples/js/example_1.js -------------------------------------------------------------------------------- /examples/js/example_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/examples/js/example_2.js -------------------------------------------------------------------------------- /examples/js/example_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/examples/js/example_3.js -------------------------------------------------------------------------------- /examples/js/example_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/examples/js/example_4.js -------------------------------------------------------------------------------- /examples/js/example_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/examples/js/example_5.js -------------------------------------------------------------------------------- /examples/js/phaser-kinetic-scrolling-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/examples/js/phaser-kinetic-scrolling-plugin.js -------------------------------------------------------------------------------- /examples/js/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/examples/js/phaser.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/phaser-kinetic-scrolling-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/src/phaser-kinetic-scrolling-plugin.js -------------------------------------------------------------------------------- /typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/typescript/README.md -------------------------------------------------------------------------------- /typescript/phaser-kinetic-scrolling-plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/typescript/phaser-kinetic-scrolling-plugin.d.ts -------------------------------------------------------------------------------- /typescript/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/Phaser-Kinetic-Scrolling-Plugin/HEAD/typescript/typings.json --------------------------------------------------------------------------------