pxt-microbit
Version:
micro:bit target for Microsoft MakeCode (PXT)
33 lines (24 loc) • 697 B
Markdown
Find out if the sprite is deleted from the game engine or not.
```sig
game.createSprite(0,0).isDeleted()
```
* a [boolean](/types/boolean) value that is `true` if the sprite is deleted from the game engine or `false` if not.
This game has 5 sprites initially. After 1 second, the third sprite is deleted and all remaining sprites are moved by 1.
```blocks
let sprites: game.LedSprite[] = []
for (let i = 0; i <= 4; i++) {
sprites.push(game.createSprite(0, i))
}
basic.pause(1000)
sprites[2].delete()
for (let sprite of sprites) {
if (!(sprite.isDeleted())) {
sprite.move(1)
}
}
```
[](/reference/game/delete)