├── .gitignore ├── AStar └── AStar.js ├── CSS3Filters └── CSS3Filters.js ├── ColorHarmony └── ColorHarmony.js ├── Juicy └── Juicy.js ├── KineticScrolling └── KineticScrolling.js ├── ProTracker └── ProTracker.js ├── README.md ├── SamplePlugin └── SamplePlugin.js ├── SaveCPU └── SaveCPU.js ├── ScreenShake └── ScreenShake.js ├── TilemapWalker └── TilemapWalker.js ├── VirtualJoystick └── VirtualJoystick.js ├── Webcam └── Webcam.js └── YM └── YM.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /AStar/AStar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-plugins/HEAD/AStar/AStar.js -------------------------------------------------------------------------------- /CSS3Filters/CSS3Filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-plugins/HEAD/CSS3Filters/CSS3Filters.js -------------------------------------------------------------------------------- /ColorHarmony/ColorHarmony.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-plugins/HEAD/ColorHarmony/ColorHarmony.js -------------------------------------------------------------------------------- /Juicy/Juicy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-plugins/HEAD/Juicy/Juicy.js -------------------------------------------------------------------------------- /KineticScrolling/KineticScrolling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-plugins/HEAD/KineticScrolling/KineticScrolling.js -------------------------------------------------------------------------------- /ProTracker/ProTracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-plugins/HEAD/ProTracker/ProTracker.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-plugins/HEAD/README.md -------------------------------------------------------------------------------- /SamplePlugin/SamplePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-plugins/HEAD/SamplePlugin/SamplePlugin.js -------------------------------------------------------------------------------- /SaveCPU/SaveCPU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-plugins/HEAD/SaveCPU/SaveCPU.js -------------------------------------------------------------------------------- /ScreenShake/ScreenShake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-plugins/HEAD/ScreenShake/ScreenShake.js -------------------------------------------------------------------------------- /TilemapWalker/TilemapWalker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-plugins/HEAD/TilemapWalker/TilemapWalker.js -------------------------------------------------------------------------------- /VirtualJoystick/VirtualJoystick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-plugins/HEAD/VirtualJoystick/VirtualJoystick.js -------------------------------------------------------------------------------- /Webcam/Webcam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-plugins/HEAD/Webcam/Webcam.js -------------------------------------------------------------------------------- /YM/YM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaserjs/phaser-ce-plugins/HEAD/YM/YM.js --------------------------------------------------------------------------------