Skip to content

Commit

Permalink
Fix block config for froggy (#6333)
Browse files Browse the repository at this point in the history
  • Loading branch information
riknoll authored Jan 25, 2024
1 parent 5ee9700 commit ad74d42
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions docs/tutorials/froggy.md
Original file line number Diff line number Diff line change
Expand Up @@ -363,19 +363,17 @@ fly.setBounceOnWall(true)
controller.A.onEvent(ControllerButtonEvent.Pressed, function () { })
frog.overlapsWith(fly)
if () { } else { }
if (false) { } else { }
game.over(true)
list = sprites.allOfKind(SpriteKind.Food)
list.pop().destroy()
for (let index = 0; index <= 4; index++) {
}
for (let index = 0; index < 4; index++) {
}
let list = sprites.allOfKind(SpriteKind.Food)
list.pop().destroy()
for (let index = 0; index <= 4; index++) {
}
for (let index = 0; index < 4; index++) {
}
```


Expand Down

0 comments on commit ad74d42

Please sign in to comment.