Rocket Landing Simulator

Gate Check #1 - Initial Functionality
Go Back to the Assignment Description

Part 1 (Overview) - Part 2 (Getting Started) - Part 3 (Initializing the Sim) - Part 4 (Terrain) - Part 5 (Rocket) - Part 5 (Boat)

What Function Do We Change?

The first thing we need to do is determine which function in our template is responsible for setting up the simulation (both at the start of the program, as well as when the program runs).

Go to the function you answered above, and remove the word "pass" (this is a keyword that tells Python to do nothing). Then, write the code to call the three functions that we mentioned in the "correct answer" response (don't forget to give it the parameter!).

Once you have done this, run your program. You should see the following lines of text appear in the console:

Initialize Terrain Successfully Called
Initialize boat Successfully Called
Initialize Rocket Successfully Called
Once you see this, proceed to the next section.