This command draws a rectangle on the screen.
What is rect()?
What command makes a new sprite?
What is createSprite()?
The coordinations of the top left of the screen.
What is (0,0)?
This country won the 2018 FIFA World Cup.
What is France?
What Sprite property controls the left and right position of a sprite?
What is sprite.x?
This command sets the color of the INSIDE of a shape.
What is fill()?
What command chooses the picture for a sprite?
What is setAnimation()?
The coordinates of the bottom right of the screen.
What is (400,400)?
This player has won the Ballon d'Or award a record seven times.
Who is Lionel Messi?
What sprite property controls the up and down position of a sprite?
What is sprite.y?
This command randomly picks a number for your program to use.
What is randomNumber()?
What command makes the sprites appear on the screen?
What is drawSprites()?
The coordinates of the center of the screen.
What is (200,200)?
This country hosted the first ever FIFA World Cup in 1930.
What is Uruguay?
What sprite property controls the 'spin' of a sprite?
What is sprite.rotation?
This command can be used to make a circle.
What is ellipse()?
What do the two numbers in createSprite(?, ?) control?
What is x and y? (Location)
The coordinates of the bottom left of the screen.
What is (0,400)?
This club won the UEFA Champions League in 2021, defeating Manchester City in the final.
What is Chelsea FC
What code can we use to make a sprite move to the right?
What is sprite.x = sprite.x + 1;
This command sets the color of the border/outline of a shape.
What is stroke()
What is the bug:
var plane = createSprite(200,200);
sprite.setAnimation("plane1");
drawSprites();
It should be plane.setAnimation();
The coordinates of this rectangle.
What is (375, 375)?
This player won the Golden Boot at the 2018 FIFA World Cup, scoring six goals in the tournament.
Who is Harry Kane?
What code can be used to make a sprite move up the screen?
What is sprite.y = sprite.y - 1;