pxt-calliope/docs/reference/game/start-countdown.md
2016-06-15 17:01:18 -07:00

610 B

Start Countdown

Start counting down time from the number of milliseconds you say.

game.startCountdown(1000)

Parameters

  • a number that means how many milliseconds to count down (one second is 1000 milliseconds)

Examples

This program is a simple game. Press button A as much as possible. At the end of 10 seconds, the program will show your score.

input.onButtonPressed(Button.A, () => {
    game.addScore(1)
})
game.startCountdown(10000)

See Also

score, change score by