├── .eslintrc.yml ├── .gitignore ├── .npmignore ├── README.md ├── bower.json ├── example ├── index.coffee ├── index.js └── vendor │ ├── dat.gui.js │ └── phaser.js ├── index.coffee ├── index.html ├── index.js ├── package.json └── screenshots ├── debug.png ├── domMeter.png ├── domText.png ├── graph.png ├── meter.png └── text.png /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-advanced-timing/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-advanced-timing/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-advanced-timing/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-advanced-timing/HEAD/bower.json -------------------------------------------------------------------------------- /example/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-advanced-timing/HEAD/example/index.coffee -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-advanced-timing/HEAD/example/index.js -------------------------------------------------------------------------------- /example/vendor/dat.gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-advanced-timing/HEAD/example/vendor/dat.gui.js -------------------------------------------------------------------------------- /example/vendor/phaser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-advanced-timing/HEAD/example/vendor/phaser.js -------------------------------------------------------------------------------- /index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-advanced-timing/HEAD/index.coffee -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-advanced-timing/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-advanced-timing/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-advanced-timing/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-advanced-timing/HEAD/screenshots/debug.png -------------------------------------------------------------------------------- /screenshots/domMeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-advanced-timing/HEAD/screenshots/domMeter.png -------------------------------------------------------------------------------- /screenshots/domText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-advanced-timing/HEAD/screenshots/domText.png -------------------------------------------------------------------------------- /screenshots/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-advanced-timing/HEAD/screenshots/graph.png -------------------------------------------------------------------------------- /screenshots/meter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-advanced-timing/HEAD/screenshots/meter.png -------------------------------------------------------------------------------- /screenshots/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samme/phaser-plugin-advanced-timing/HEAD/screenshots/text.png --------------------------------------------------------------------------------