The mash up game jam took a week to complete in. I was the only programmer on the project. We created a tower defense game where the player defends a tower from ghosts for as long as possible. We came 14th out of 53 and the game was featured on the host's Youtube channel. Link to itch: https://wgcfox.itch.io/shield-of-ruins
The main menu is a simple level that just switches out two canvases with buttons that start the game and show credits.
The programming of the game, the player had a number of options for movement and attacking: dashing, switching out weapon, hit with shield, fire out a light projectile. The dash was taken from a YouTube tutorial, which adds a force to the player to dash through and does not allow movement while dashing. The Player's melee creates an area of effect that hits mobs in a radius.
void Attack()
{
Collider2D[] hitEnemies = Physics2D.OverlapCircleAll(attackPoint.position, attackRange, enemyLayers);
if (hitEnemies.Length == 0) { return; }
foreach (Collider2D enemy in hitEnemies)
{
//playerRigid.AddForce(-attackPoint.position * bounceAdjuster, ForceMode2D.Force);
enemy.GetComponent<Mob>().Damaged(damage);
}
}
When the player is hit by ghost they are stunned.
When the player rotates, the player cycles through animation. This cycles through different from looking up right to bottom right. When the facing up right, the shield goes behind the player
private void CycleAnim()
{
if (angle > 68 && angle < 109)
{
plAnim.SetInteger("Index", 1);
plWepAnim.SetInteger("Index", 1);
plWepSprite.sortingOrder = sortOrderMinus;
}
else if (angle > 20 && angle < 69 || angle < 175 && angle > 109)
{
plAnim.SetInteger("Index", 2);
plWepAnim.SetInteger("Index", 2);
plWepSprite.sortingOrder = sortOrderMinus;
}
else if (angle > -35 && angle < 21 || angle < -150 || angle > 175)
{
plAnim.SetInteger("Index", 3);
plWepAnim.SetInteger("Index", 3);
plWepSprite.sortingOrder = sortOrderPlus;
}
else if (angle > -69 && angle < -35 || angle > -150 && angle < -109)
{
plAnim.SetInteger("Index", 4);
plWepAnim.SetInteger("Index", 4);
plWepSprite.sortingOrder = sortOrderPlus;
}
else if (angle > -109 && angle < -69)
{
plAnim.SetInteger("Index", 5);
plWepAnim.SetInteger("Index", 5);
plWepSprite.sortingOrder = sortOrderPlus;
}
}
The programming of the mob was fairly simple since the monsters just head to the tower to destroy it. There are three mob types: A big grim reaper, a normal ghost, and a flying skull. All the AI does is go tower and hit it and then die.
The game loop is tied to the Tower, when the tower's health is 0 then the game cleans up the remaining mobs and then displays the time that the player survived for. When the tower is destroyed the game finds all spawners and remaining mobs saves them in an array and then loops through and destroys them.
private IEnumerator EndTimer()
{
player.GetComponent<PlayerScript>().SetPlayerEnabled(false);
player.GetComponent<PlayerScript>().SetStunned(true);
EndofGameCleanup();
yield return new WaitForSeconds(3.0f);
timeText.text = TimeSurvived();
endMenu.enabled = true;
}
private void EndofGameCleanup()
{
GameObject[] spawners = GameObject.FindGameObjectsWithTag("MobSpawner");
foreach (GameObject spawn in spawners)
{
Destroy(spawn);
}
GameObject[] mobs = GameObject.FindGameObjectsWithTag("Mob");
foreach (GameObject mob in mobs)
{
mob.GetComponent<Mob>().Damaged(100);
}
}
I learned how to work with a team that I had never met before and to tell them what I can do as well what I could not do in the time allocated. It was a fun experience :)