pxt-calliope/olddocs/js/game-library/change-score-by.md

32 lines
596 B
Markdown
Raw Normal View History

2016-03-26 00:47:20 +01:00
# Change Score By
The game library supports simple single-player time-based games. The player will ** add points to score**.
2016-06-02 06:19:16 +02:00
```blocks
input.onButtonPressed(Button.A, () => {
2016-03-26 00:47:20 +01:00
game.addScore(1)
})
game.startCountdown(10000)
```
### Score
When a player achieves a goal, you can increase the game score
* add score points to the current score
```
export function addScore(points: number)
```
* get the current score value
```
export function score() : number
```
### Lessons
2016-04-13 17:27:45 +02:00
[bop it](/lessons/bop-it) | [game of chance](/lessons/game-of-chance) | [game counter](/lessons/game-counter)
2016-03-26 00:47:20 +01:00