top of page
game developer

Spire survival
Spire survival is a 2D tower defense game that was made inspired by age of war. I worked on this game alone, meaning i made all the gameplay, animations and UI myself! The art came from the unity asset store.
Showreel
In my tower defense game, you can buy turrets and place them on your tower. when an enemy comes within range, the turret will shoot a cannon ball at it and kill the enemy! but how does that work?

First, we place a collider in the game where we want the turret to start detecting. when an enemy walks into the collider, this script will tell another script to shoot at the enemy.
Here, the next script is told to create the bullet and play the sound of a cannon that shoots

.png)
When that is done, i tell the bullet to go in the direction of the enemy
And last but not least, i tell the bullet it needs to destroy itself and the enemy when they collide

This is what that looks like!

Find my spire survival girhub repo here:
bottom of page