10/31-11/14: Preparing for Beta
I’ve had a lot of progress over the past two weeks. Here are my updates:
Tower Range Indicator (1.5 hours)
Many industry playtesters suggested that when a tower is selected, a tower range indicator is shown. This allows players to better strategize since they can actually see the range of the tower. I wanted the indicator to be placed under the tower so the tower art is the most prominent. This was actually a bit more challenging than I initially anticipated because the towers are all sprites but the current range display is a UI element. I created a new display that’s a sprite renderer rather than a UI element, and modified the event systems to allow me to do this.
Various Bug Fixes (4 hours)
I spent a lot of time fixing bugs in Project Tower. Here is an overview of the bugs I fixed:
Fixed a bug where the campaign refused to progress past the first cutscene
Fixed a bug where red ghosts dealt 15 damage
Added a radius to tower collision checking
Fixed null reference exceptions in main menu
Fixed the colliders in the monkey meadows clone level
Fixed an additional bug where the campaign referenced a scene that got renamed.
Added unique sorting layers to all the enemies
For most of them, I didn’t need to refactor systems. It was about finding which system controlled which element of the game and adjusting the data accordingly.
Additional Upgrades (2 hours)
There were a bunch more upgrades that needed to get in the game. The ones I implemented were:
An upgrade that allows projectiles to stun enemies. I had the ability for enemies to be stunned.
An upgrade increasing the radius of an explosive tower
A projectile health upgrade that makes projectiles more durable
A support tower upgrade that allows support towers to see camo ghosts.
Asset Integrations (0.5 hours)
I integrated two assets into the game. The first was the explosive projectile sound effect by Crystal (see below), which plays whenever an explosion goes off. I had to set up the event system on the explosion script to allow it to go off
The second asset is the sniper tower upgrade art by Zelin (see below). This was actually really easy because one of our programmers set up a way to do this. I just had to drag stuff into the inspector.
Project Management (4 hours)
A lot of my time was spent on managing the programmers and the project. These responsibilities include:
Make JIRA tasks for programmers and designers based on playtesting feedback. Many programmers said my method of making tasks with a HELPFUL LINKS section and a POSSIBLE IMPLEMENTATION section assisted them in their task (this is blatantly inspired by Austin Yarger’s teaching techniques, I’m sure he won’t mind). Upon further questioning, students said this helped reduce the time they spent lost in the codebase. I created their tasks with these sections (at least where applicable).
Reviewing and merging pull requests. Surprisingly, there weren’t any merge conflicts this time (which is very odd). However, we got 30 pull request in those two weeks, and I always double check to make sure no files were accidentally broken.
Checking in with members and assisting them with implementation. This mainly involves answering their questions about how the code works.