summaryrefslogtreecommitdiff
path: root/game/prefabs/hud.js
diff options
context:
space:
mode:
Diffstat (limited to 'game/prefabs/hud.js')
-rw-r--r--game/prefabs/hud.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/game/prefabs/hud.js b/game/prefabs/hud.js
index 13f8f51..a7b39a0 100644
--- a/game/prefabs/hud.js
+++ b/game/prefabs/hud.js
@@ -1,6 +1,6 @@
'use strict';
-var Hud = function(game, player, x, y, scorefontKey) {
+var Hud = function(game, player, x, y, scorefontKey, keyboardSpriteKey) {
Phaser.Group.call(this, game);
this.x = x;
this.y = y;
@@ -22,7 +22,9 @@ var Hud = function(game, player, x, y, scorefontKey) {
this.controllerDiagram.scale = {x: 0.5, y: 0.5};
this.add(this.controllerDiagram);
- this.sendToBack(this.background);
+ this.keyboardControls = new Phaser.Sprite(this.game, 0, 600, keyboardSpriteKey);
+ this.keyboardControls.scale = {x: 0.5, y: 0.5};
+ this.add(this.keyboardControls);
this.currentScore = 0;
};