drawing blocks
vocabulary
sprite blocks
misc.
100

Creates a rectangle

What is rect(x, y, w, h);?

100

___ is the sequence in which the computer executed code.

What is Order of Commands?

100

Moves the center of the sprite to that x position?

What is sprite.x?

100

Displays all sprites in the sketch

What is drawSprites();?

200

Changes a shape to have no fill

What is noFill();?

200

____ is a container for storing a value to be used and updated.

What is Variable?

200

Changes the sprites width

What is sprite.width?

200

Sets the image or animation for the sprite.

What is sprite.setAnimation();?

300

Changes the color of the shapes border

What is stroke(color);?
300

___ are additional information provided as input to a block to customize it’s functionality

What is Parameters?

300

Overlays a color on top of a sprite to change the color while not changing the original colors

What is sprite.tint?

300

The two parameters for the randomNumber() function.

What is minimum and maximum?

400

Changes the color for the entire screen to purple

What is background(”purple”);?

400

_____ are a character on the screen with properties that describes its location, movement, and look.

What is Sprites?

400

Allows you to shrink or grow a sprite while keeping the height to width ratio the same

What is sprite.scale?

400

One way to access and update a sprite's property.

What is Dot Notation?

500

Creates a polygon with all equal sides and angles

What is regularPolygon(x, y, sides, size);?

500

____ is a label for a characteristic of a sprite, such as its location and appearance.

What is Property?

500

Changes the transparency of a sprite

What is sprite.alpha?

500

Assigning a value when we declaring a variable.

What is Initializing?