pxt-calliope/docs/reference/game/game-over.md
2020-02-20 04:01:37 +01:00

648 B

Game Over

End the game and show the score.

game.gameOver();

Example

This program asks you to pick a button. If you press button A, the program says YOU WIN!. If you press button B, it shows an animation and ends the game.

basic.showString("PICK A BUTTON");
input.input.onButtonEvent(Button.A, DAL.MICROBIT_BUTTON_EVT_CLICK, () => {
    basic.showString("YOU WIN!");
});
input.input.onButtonEvent(Button.B, DAL.MICROBIT_BUTTON_EVT_CLICK, () => {
    game.gameOver();
});

See Also

score, add score, start countdown