WorksheetsPython L2- Quiz 7
Total questions: 6
Worksheet time: 3mins
Pygame has it's own built-in clock
True
False
Most human beings can register ________ frames per second as individual images.
7-10
10-12
12-16
22-30
Clock.tick(var) limits the _______.
frames per second
time per frame
size of the clock text
volume of the clock tick.
colliderect is a function belonging to the rectangle class that checks if any other shapes have collided with it.
True
False
If I wanted the position of the mouse, I would type ________.
pygame.mouse.get_position()
pygame.mouse.getPosition()
pygame.get_input.mouse_position()
pygame.mouse_position
The easiest way to reverse the direction that a game object is moving
object.x_speed *= -1
object.y_speed *= -1
object.direction.reverse()
object.turn(180)
object.x_speed = object.y_speed
object.y_speed = object.x_speed
