├── .bowerrc ├── .editorconfig ├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── Procfile ├── README.md ├── app.js ├── assets ├── empty.wav ├── gun-cocking-01.wav ├── gunshot.wav ├── preloader.gif └── yeoman-logo.png ├── bower.json ├── bower_components └── phaser-official │ ├── .bower.json │ ├── CONTRIBUTING.md │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── build │ ├── config.php │ ├── custom │ │ ├── ninja.js │ │ ├── ninja.min.js │ │ ├── p2.js │ │ ├── p2.min.js │ │ ├── phaser-no-libs.js │ │ ├── phaser-no-libs.min.js │ │ ├── phaser-no-physics.js │ │ ├── phaser-no-physics.min.js │ │ ├── pixi.js │ │ └── pixi.min.js │ ├── phaser.d.ts │ ├── phaser.js │ ├── phaser.map │ └── phaser.min.js │ ├── changelog.md │ ├── license.txt │ ├── package.json │ ├── phaser-logo-small.png │ └── plugins │ ├── AStar.js │ ├── CSS3Filters.js │ ├── ColorHarmony.js │ ├── ProTracker.js │ ├── QuadTree.js │ ├── SamplePlugin.js │ └── Webcam.js ├── config.json ├── css └── styles.css ├── dist ├── assets │ ├── empty.wav │ ├── gun-cocking-01.wav │ ├── gunshot.wav │ ├── preloader.gif │ └── yeoman-logo.png ├── css │ └── styles.css ├── index.html └── js │ ├── game.js │ ├── phaser.js │ ├── phaser.min.js │ └── plugins │ └── HUDManager.js ├── game ├── hud-manager │ ├── hud-manager.js │ └── scope.js ├── main.js ├── plugins │ └── HudManager.js ├── prefabs │ ├── enemy.js │ └── player.js ├── registries │ └── game-registry.js └── states │ ├── boot.js │ ├── gameover.js │ ├── menu.js │ ├── play.js │ └── preload.js ├── index.html ├── package.json └── templates └── _main.js.tpl /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node app.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/app.js -------------------------------------------------------------------------------- /assets/empty.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/assets/empty.wav -------------------------------------------------------------------------------- /assets/gun-cocking-01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/assets/gun-cocking-01.wav -------------------------------------------------------------------------------- /assets/gunshot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/assets/gunshot.wav -------------------------------------------------------------------------------- /assets/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/assets/preloader.gif -------------------------------------------------------------------------------- /assets/yeoman-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/assets/yeoman-logo.png -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower.json -------------------------------------------------------------------------------- /bower_components/phaser-official/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/.bower.json -------------------------------------------------------------------------------- /bower_components/phaser-official/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/CONTRIBUTING.md -------------------------------------------------------------------------------- /bower_components/phaser-official/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/Gruntfile.js -------------------------------------------------------------------------------- /bower_components/phaser-official/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/README.md -------------------------------------------------------------------------------- /bower_components/phaser-official/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/bower.json -------------------------------------------------------------------------------- /bower_components/phaser-official/build/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/build/config.php -------------------------------------------------------------------------------- /bower_components/phaser-official/build/custom/ninja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/build/custom/ninja.js -------------------------------------------------------------------------------- /bower_components/phaser-official/build/custom/ninja.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/build/custom/ninja.min.js -------------------------------------------------------------------------------- /bower_components/phaser-official/build/custom/p2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/build/custom/p2.js -------------------------------------------------------------------------------- /bower_components/phaser-official/build/custom/p2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/build/custom/p2.min.js -------------------------------------------------------------------------------- /bower_components/phaser-official/build/custom/phaser-no-libs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/build/custom/phaser-no-libs.js -------------------------------------------------------------------------------- /bower_components/phaser-official/build/custom/phaser-no-libs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/build/custom/phaser-no-libs.min.js -------------------------------------------------------------------------------- /bower_components/phaser-official/build/custom/phaser-no-physics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/build/custom/phaser-no-physics.js -------------------------------------------------------------------------------- /bower_components/phaser-official/build/custom/phaser-no-physics.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/build/custom/phaser-no-physics.min.js -------------------------------------------------------------------------------- /bower_components/phaser-official/build/custom/pixi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/build/custom/pixi.js -------------------------------------------------------------------------------- /bower_components/phaser-official/build/custom/pixi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/build/custom/pixi.min.js -------------------------------------------------------------------------------- /bower_components/phaser-official/build/phaser.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/build/phaser.d.ts -------------------------------------------------------------------------------- /bower_components/phaser-official/build/phaser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/build/phaser.js -------------------------------------------------------------------------------- /bower_components/phaser-official/build/phaser.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/build/phaser.map -------------------------------------------------------------------------------- /bower_components/phaser-official/build/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/build/phaser.min.js -------------------------------------------------------------------------------- /bower_components/phaser-official/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/changelog.md -------------------------------------------------------------------------------- /bower_components/phaser-official/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/license.txt -------------------------------------------------------------------------------- /bower_components/phaser-official/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/package.json -------------------------------------------------------------------------------- /bower_components/phaser-official/phaser-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/phaser-logo-small.png -------------------------------------------------------------------------------- /bower_components/phaser-official/plugins/AStar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/plugins/AStar.js -------------------------------------------------------------------------------- /bower_components/phaser-official/plugins/CSS3Filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/plugins/CSS3Filters.js -------------------------------------------------------------------------------- /bower_components/phaser-official/plugins/ColorHarmony.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/plugins/ColorHarmony.js -------------------------------------------------------------------------------- /bower_components/phaser-official/plugins/ProTracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/plugins/ProTracker.js -------------------------------------------------------------------------------- /bower_components/phaser-official/plugins/QuadTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/plugins/QuadTree.js -------------------------------------------------------------------------------- /bower_components/phaser-official/plugins/SamplePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/plugins/SamplePlugin.js -------------------------------------------------------------------------------- /bower_components/phaser-official/plugins/Webcam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/bower_components/phaser-official/plugins/Webcam.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/config.json -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/css/styles.css -------------------------------------------------------------------------------- /dist/assets/empty.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/dist/assets/empty.wav -------------------------------------------------------------------------------- /dist/assets/gun-cocking-01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/dist/assets/gun-cocking-01.wav -------------------------------------------------------------------------------- /dist/assets/gunshot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/dist/assets/gunshot.wav -------------------------------------------------------------------------------- /dist/assets/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/dist/assets/preloader.gif -------------------------------------------------------------------------------- /dist/assets/yeoman-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/dist/assets/yeoman-logo.png -------------------------------------------------------------------------------- /dist/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/dist/css/styles.css -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/js/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/dist/js/game.js -------------------------------------------------------------------------------- /dist/js/phaser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/dist/js/phaser.js -------------------------------------------------------------------------------- /dist/js/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/dist/js/phaser.min.js -------------------------------------------------------------------------------- /dist/js/plugins/HUDManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/dist/js/plugins/HUDManager.js -------------------------------------------------------------------------------- /game/hud-manager/hud-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/game/hud-manager/hud-manager.js -------------------------------------------------------------------------------- /game/hud-manager/scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/game/hud-manager/scope.js -------------------------------------------------------------------------------- /game/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/game/main.js -------------------------------------------------------------------------------- /game/plugins/HudManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/game/plugins/HudManager.js -------------------------------------------------------------------------------- /game/prefabs/enemy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/game/prefabs/enemy.js -------------------------------------------------------------------------------- /game/prefabs/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/game/prefabs/player.js -------------------------------------------------------------------------------- /game/registries/game-registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/game/registries/game-registry.js -------------------------------------------------------------------------------- /game/states/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/game/states/boot.js -------------------------------------------------------------------------------- /game/states/gameover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/game/states/gameover.js -------------------------------------------------------------------------------- /game/states/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/game/states/menu.js -------------------------------------------------------------------------------- /game/states/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/game/states/play.js -------------------------------------------------------------------------------- /game/states/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/game/states/preload.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/package.json -------------------------------------------------------------------------------- /templates/_main.js.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ada-lovecraft/phaser-HudManager/HEAD/templates/_main.js.tpl --------------------------------------------------------------------------------