Game Preview

Review Help Santa Project

  •  English    12     Public
    Some easy question to review the Help Santa Project's Code
  •   Study   Slideshow
  • How many sprites does this project have?
    3
  •  10
  • How many costume does the gift have?
    4
  •  10
  • In the following program, which block is repeated many times?
    moving
  •  20
  • In the following program, what is the purpose of the moving block?
    It helps move the sled when player press arrow keys
  •  25
  • Which rotation style will prevent the character from being upside down when going to the left? (all around/left-right/don't rotate)
    left-right and don't rotate (but left-right will return better result)
  •  20
  • Please explain the meaning of each block in the definition of appear block.
    The sled will show on the stage. Then it will go to x = 100, y = -120 position. Then the size of sled will be set to 80% of the original size.
  •  20
  • When running the following program, how does the gift move?
    It falls from the sky to the ground.
  •  25
  • Which block will help the gift appear at a random place on the top of the stage?
    go to x: (pick random -240 to 240); y:180
  •  25
  • Which block will help the gift have a random costume?
    switch costume to (pick random 1 to 4)
  •  20
  • Which block will help the gift have a random size?
    set size to (pick random 30 to 80%)
  •  20
  • When does Santa show?
    Point > 10
  •  25
  • How many points will the player earn each time the sled catch the gift?
    1
  •  25