pxt-calliope/docs/reference/game/start-countdown.md

30 lines
619 B
Markdown
Raw Normal View History

2016-03-26 00:47:20 +01:00
# Start Countdown
Start counting down time from the number of milliseconds you say.
2016-03-26 00:47:20 +01:00
```sig
game.startCountdown(1000)
2016-03-26 00:47:20 +01:00
```
### Parameters
2016-03-26 00:47:20 +01:00
2016-07-18 23:23:05 +02:00
* ``ms`` is a [number](/reference/types/number) that says how many milliseconds to count down (one second is 1000 milliseconds)
2016-03-26 00:47:20 +01:00
### Examples
2016-03-26 00:47:20 +01:00
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.
2016-03-26 00:47:20 +01:00
```blocks
input.onButtonPressed(Button.A, () => {
game.addScore(1)
})
game.startCountdown(10000)
2016-03-26 00:47:20 +01:00
```
### See Also
2016-03-26 00:47:20 +01:00
[score](/reference/game/score), [change score by](/reference/game/change-score-by)
2016-03-26 00:47:20 +01:00