Creates a rectangle
What is rect(x, y, w, h);?
___ is the sequence in which the computer executed code.
What is Order of Commands?
Moves the center of the sprite to that x position?
What is sprite.x?
Displays all sprites in the sketch
What is drawSprites();?
Changes a shape to have no fill
What is noFill();?
____ is a container for storing a value to be used and updated.
What is Variable?
Changes the sprites width
What is sprite.width?
Sets the image or animation for the sprite.
What is sprite.setAnimation();?
Changes the color of the shapes border
___ are additional information provided as input to a block to customize it’s functionality
What is Parameters?
Overlays a color on top of a sprite to change the color while not changing the original colors
What is sprite.tint?
The two parameters for the randomNumber() function.
What is minimum and maximum?
Changes the color for the entire screen to purple
What is background(”purple”);?
_____ are a character on the screen with properties that describes its location, movement, and look.
What is Sprites?
Allows you to shrink or grow a sprite while keeping the height to width ratio the same
What is sprite.scale?
One way to access and update a sprite's property.
What is Dot Notation?
Creates a polygon with all equal sides and angles
What is regularPolygon(x, y, sides, size);?
____ is a label for a characteristic of a sprite, such as its location and appearance.
What is Property?
Changes the transparency of a sprite
What is sprite.alpha?
Assigning a value when we declaring a variable.