-
-
Save melcor76/458503e0bec4e37537bce3790fae86fd to your computer and use it in GitHub Desktop.
js-tetris - game over
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function gameOver() { | |
cancelAnimationFrame(requestId); | |
this.ctx.fillStyle = 'black'; | |
this.ctx.fillRect(1, 3, 8, 1.2); | |
this.ctx.font = '1px Arial'; | |
this.ctx.fillStyle = 'red'; | |
this.ctx.fillText('GAME OVER', 1.8, 4); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment