4/7 - 4/20: Creating the Final Build
We’ve had a lot of progress over the past two weeks. Here are the updates:
Planning and Assigning Tasks (7 Hours)
One of my priorities is planning and assigning the tasks for my pod, which includes 3 artists, 4 programmers, and 2 sound designers . The primary challenge this time was to figure out what things need tweaking and how that could be done without significantly increasing the scope of the game. I had to play the game many times just to get a good sense of all the bugs in the game. This task also involves communicating to my pod members about the bugs that we need to fix, as well as communicating with the level design pod to get a sense of what they need. Below is a look at some of the things my pod accomplished (please note that not as much content was created this sprint, as it was mostly bug fixing and polishing):
One of the pieces of feedback I got while playtesting is that the stalker felt out of place in the Windmill due to it’s primarily green color scheme. As a result, I worked with Alex Kisil and Naveen to change the color scheme to better match the stage (by switching the green to orange). This made the stalker feel much more in place with the overall stage, keeping the cohesion in tact.
Level Design reached out about a glitch where the Stalwart would fall through the floor if it fell through the floor. I assigned Matan to figure out the cause of this task, and he figured out that the issue is caused by a faulty gravity check. The stalwart no longer flies through the floor.
Here is how I broke down handing out tasks:
All of my artists were focused on iterating on their existing animations. This meant seeing them in game and figuring out how they can look better or more in line with the rest of the game. This was a largely iterative process.
Programmers were focused on fixing bugs. To help them, I made a list of all of the bugs in the game that I found (https://studio.eecs.umich.edu/confluence/display/BLUE/Enemy+Bugs) to better organize our workflow. In hindsight, I could have created a better system for fixing the bugs. This could have better utilized Jira, but I think this ended up working out relatively well in the end.
Sound Designers wanted to create Hurt sound effects for the enemies, as they noticed that they were missing from the game. This was not something that I would have considered without their input. 4 new enemy sound effects were created, including ones for the Acrobat, Dropper, Qrabz, and Stalwart. In addition, I asked them to iterate on their sound effects. They mainly created variations of their existing sound effects to avoid ear fatigue.
Fixing Bugs (8 hours)
In addition to assigning tasks, I spent a large chunk of time fixing the bugs on the enemies. As I was the one to set all of the enemy systems up, I figured that I was the best to resolve the bugs that I may have created. Here is a list of some of the bugs I fixed:
Enemy SFX don't work (The enemy soundbank was being destroyed, as the levels were being loaded/unloaded concurrently. We needed to make two prefabs)
Stalwart roars in the wrong direction (This involved the complex interlocking of multiple scripts that ended with a very hacky fix)
Stalker facing wrong direction and not on ground (This involved going into every scene and setting the scale of the stalker to -1)
Enemies flash pink instead of white (This involved making the FlashOnHit script take in a material instead of a color to flash to)
Stalker doesn't shoot projectiles sometimes (This was because the stalker’s projectiles were hitting the cinemachine color)
Stalker shoots in the wrong direction (I made a check to see if the player was behind the stalker)
The game was crashing (I made a check on the relevant scripts to see if the player was null)
Getting Feedback (2 hours)
I also spent a significant amount of time getting feedback from people about how I did this semester. Being the enemy pod lead was a very rocky journey, and I certainly could have done a lot better. This meant having a conversation with each of my pod members about how I did, what went well, and what didn’t. Among the feedback I got was:
I need to involve more people in the integration of assets, and not just the creation of them
I should have the sound designers determine what sound effects go into the game.
I should utilize documentation more often, and keep it consistently updated.
I should have my pod members communicate with each other, rather than just me, for figuring out the implementation details
I should create more tasks for the designers on my pod.