From 69f6a4f070753181fb174e5a103a82f990df64f9 Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Thu, 24 Jul 2014 10:52:07 +0200 Subject: Made fonts red and yellow for different players --- game/states/play.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'game/states/play.js') diff --git a/game/states/play.js b/game/states/play.js index 173564b..9a0748c 100644 --- a/game/states/play.js +++ b/game/states/play.js @@ -43,8 +43,8 @@ Play.prototype = { this.game.physics.startSystem(Phaser.Physics.ARCADE); - this.playerAScoreText = this.game.add.bitmapText(-0.1, -0.4, 'spaced-scorefont','0',1); - this.playerBScoreText = this.game.add.bitmapText(this.world.width/this.world.scale.x - 2.1, -0.4, 'spaced-scorefont','0',1); + this.playerAScoreText = this.game.add.bitmapText(-0.1, -0.4, 'spaced-scorefont-a','0',2); + this.playerBScoreText = this.game.add.bitmapText(this.world.width/this.world.scale.x - 3.1, -0.4, 'spaced-scorefont-b','0',2); this.gameWon = false; }, @@ -54,13 +54,14 @@ Play.prototype = { if (!this.gameWon && this.pills.total === 0) { this.gameWon = true; if (this.playerA.score > this.playerB.score) { - this.setVictoryText("PLAYER A WINS"); + this.setVictoryText('RED WINS', 'a'); } else if (this.playerA.score < this.playerB.score) { - this.setVictoryText("PLAYER B WINS"); + this.setVictoryText('YELLOW WINS', 'b'); } else { - this.setVictoryText("DRAW"); + var victoryColor = this.playerA.isMyTurn ? 'b' : 'a'; + this.setVictoryText('DRAW', victoryColor); } var self = this; @@ -207,10 +208,9 @@ Play.prototype = { for (var i=0; i