STEP 10: Time to call add_ball() in the main function to see it appear on the stage!

  • Click on LOGIC. Go to and drag Function Call into the bottom of the main function.
  • Change the name of the function from my_function() to add_ball().

To navigate the page using the TAB key, first press ESC to exit the code editor.

def set_stage(): """ Sets up the stage for the game """ stage.set_background("soccerfield") stage.disable_floor() def add_player(): """ Adds a player to the stage for the user to control """ player = codesters.Sprite("player1") player.go_to(0, -155) return player def add_ball(): """ Adds a ball to the stage and sets its attributes """ ball = codesters.Sprite("soccerball") ball.set_y_speed(-8) def main(): """ Sets up the program and calls other functions """ set_stage() player = add_player() main()
  • Run Code
  • Submit Work
  • Next Activity
  • Show Console
  • Reset Code Editor
  • Codesters How To (opens in a new tab)