Clicky

Space Explorer

This simple survival game was made for the Scripting for Games 1 class. The player can pickup powerups to help them survive as long as possible as they dodge randomly generated enemies.

The enemy spawning system was my main focus for the project. I experimented with placement and spawn rates of enemies. My final version of the game, converts between viewport and world space to spawn enemies just offscreen from the player. This creates greater consistency so that enemies’s velocities are not too high by the time they crosses the player’s view.

Each frame, a randomly generated number (from 0 to 1) is compared to the shown curve. If it is below the curve, it would spawn an enemy. The parameters i, a, and t correspond to the inital spawnrate, target spawnrate, and target time, respectively. I utilized these parameters to easily adjust the difficulty of the game.

Last Updated: October 2021