pxt-calliope/docs/reference/game/change.md
2016-04-18 08:33:09 -07:00

27 lines
482 B
Markdown

# Change
Sprite will change the x position by this number
### Block Editor
![](/static/mb/change-0.png)
### JavaScript
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](/lessons/game-of-chance) | [game counter](/lessons/game-counter)