pxt-calliope/docs/reference/game/change.md

31 lines
528 B
Markdown
Raw Normal View History

2016-03-26 00:47:20 +01:00
# Change
The game library
### Change
Sprite will change the x position by this number
## Block Editor
![](/static/mb/change-0.png)
## KindScript
Sprite will change the x position by this number
```
export function changeXBy(_this: micro_bitSprites.LedSprite, x: number)
```
Sprite will change the y position by this number
```
export function changeYBy(_this: micro_bitSprites.LedSprite, y: number)
```
### Lessons
[game of chance](/microbit/lessons/game-of-chance) | [game counter](/microbit/lessons/game-counter)