Game Lab Commands
Sprites
Game Lab Coordinates
Soccer Trivia
Sprite Properties
100

This command draws a rectangle on the screen.

What is rect()?

100

What command makes a new sprite?

What is createSprite()?

100

The coordinations of the top left of the screen.

What is (0,0)?

100

This country won the 2018 FIFA World Cup.

What is France?

100

What Sprite property controls the left and right position of a sprite?

What is sprite.x?

200

This command sets the color of the INSIDE of a shape.

What is fill()?

200

What command chooses the picture for a sprite?

What is setAnimation()?

200

The coordinates of the bottom right of the screen.

What is (400,400)?

200

This player has won the Ballon d'Or award a record seven times.

Who is Lionel Messi?

200

What sprite property controls the up and down position of a sprite?

What is sprite.y?

300

This command randomly picks a number for your program to use.

What is randomNumber()?

300

What command makes the sprites appear on the screen?

What is drawSprites()?

300

The coordinates of the center of the screen.

What is (200,200)?

300

This country hosted the first ever FIFA World Cup in 1930.

What is Uruguay?

300

What sprite property controls the 'spin' of a sprite?

What is sprite.rotation?

400

This command can be used to make a circle.

What is ellipse()?

400

What do the two numbers in createSprite(?, ?) control?

What is x and y? (Location)

400

The coordinates of the bottom left of the screen.

What is (0,400)?

400

This club won the UEFA Champions League in 2021, defeating Manchester City in the final.

What is Chelsea FC

400

What code can we use to make a sprite move to the right?

What is sprite.x = sprite.x + 1;

500

This command sets the color of the border/outline of a shape.

What is stroke()

500

What is the bug:

var plane = createSprite(200,200);

sprite.setAnimation("plane1");

drawSprites();

It should be plane.setAnimation();

500

The coordinates of this rectangle.

What is (375, 375)?

500

This player won the Golden Boot at the 2018 FIFA World Cup, scoring six goals in the tournament.

Who is Harry Kane?

500

What code can be used to make a sprite move up the screen?

What is sprite.y = sprite.y - 1;