Week 8+9: Polish & Playtesting
- Ryan Hughes
- Mar 26, 2024
- 10 min read
These past 2 weeks have been a bit of a blur. I've had some major PC issues at home which left my PC out of action for some time. As I do 99% of my work from home, this was very frustrating as I ended up needing to travel to campus every day in order to continue progressing the project. This isn't ideal for me as I prefer working from home when I can. I have since been able to fix my PC issues so I'm back to BAU from home which is great for me as I'm able to get a lot more work done.
My main goal was to get my game build to the point that I was happy enough to start playtesting. I had some major tasks to complete before I could start this.
Finalized Perk Tiers
Update the run speed of zombies from round 6 onwards as are too fast
Update the wall weapons to have purchasable ammo with separate costs
Fix guns having incorrect ammo amounts upon repurchasing the gun after replacing it with another.
Some very basic UI prompts
Main Menu prototype
Pause Menu prototype
Death Screen prototype
Melee attack
Set up the zombie spawners outside of each barrier
Navmesh fixes and optimization
Full blocking volume pass
Set up itch.io game page and get my game build packaged and uploaded.
With my tasks outlined, I started with some quick wins as I knew some of the tasks would be a large undertaking.
Perk System Finished: I have managed to get the perk system and all its tiers to a stage that I'm happy with. Depending on my available time later on in the project, I may come back to this to make some additions however I do still need to make some polish and tweaks to the system.
Names based on Aztec gods. (Subject to change) Health Perk: Patecatl's Vigor
Base Tier - Gives the player an additional 100hp
Tier 1 - Increase Health Regen Delay By 30% (delay changes from 5 seconds to 3.5 seconds)
Tier 2 - Increases Health regen delay By 50% & Gives an additional bonus 100hp
(Sets health regen delay to 2.5 seconds & max health to 350hp at Tier 2)
Extra Life Perk: Quetzalcoatl's Revival Base Tier - If health reaches 0, the player will be restored to full health and will lose all currently acquired perks. (No upgrades available)
Damage Perk: Tezcatlipoca's Destruction
Base Tier - Multiplies All Gun Damage Output By 2X (Double Damage)
Tier 1 - Increase Global Fire Rate Modifier By 30%
Tier 2 - Increase Global Headshot Multiplier By 20%
Agility Perk: Ehecatl's Agility
Base Tier - Increase Global Reload Speed By 50%
Tier 1 - Increase Global Weapon Swap Speed By 50%
Tier 2 - Increases Stamina Total & Sprint Speed By 30%
Updating the run speed:
Before this stage I had done some small playtests with a couple of friends and everyone had noticed that the run speed of the zombies once the game hits round 6 was way too fast. Tweaking this to a lower value has promoted better gameplay, however I think more tweaks to this need to be made to make it a better experience overall.
Updating Wall Weapons:
As shown in previous weeks dev logs, I have a system that allows the player to purchase specific weapons from specific 'wall buy' locations.
I wanted a way for the player to be able to restore their ammo for that specific weapon without needing to pay the full price for it again. I created a custom event inside the player character which is where all of the gun logic is run. My guns use both a data table and a secondary blueprint class that handles the dynamic ammo counts. To update the ammo it takes the currently help gun and sets the dynamic amount back to the same amount from the data table as that value will never change during runtime. I then call this custom event from inside the wall buy actor when a specific condition is met. When the player collides with a wall buy actor, the game will check if the player is using that weapon in their currently weapon slot. if so it will allow them to purchase it which will then call the custom event to restore the ammo. This also allows me to update the purchase cost to a lower amount when running this line of the code.
Fix ammo for repurchased guns:
I noticed an issue with the guns where if you use some ammo from a gun, get rid of that gun by replacing it with another, and then getting that same gun back, it will still have the same ammo as before as opposed to the full amount being restored. This is due to how the dynamic inventory for the ammo is set up. As I have just created a custom event within the player character that will restore the ammo of the currently equipped weapon, I could use that to fix the issue. I called the custom event again at the point where a new weapon is purchased and equipped within the wall buy actor. This fixes the problem for guns acquired through this method however there will be a couple more ways in which the player can acquire new guns so this fix will need to be replicated for those too.
Simple UI Prompts:
At this stage, the game didn't have anything to tell the player that they could interact with something. I needed to set up something simple so that the player could at least tell when something can be interacted with. I started with adding some text into my main player widget where everything else for the player player HUD is held. I set up 2 custom events which will set and unset the visibility of the text. I can then call those custom events whenever I'm colliding with something that can be interacted with. This can be done by checking if an actor implements the interact interface. This is a very rough way of doing it as I only have one prompt that pops up so I will need to re-evaluate this in the future to get a better system in place. To show the cost of an item, the game will check any overlapping actor with the player that has a purchase component inside of it. This will only ever be a single actor at a time as there are no buyables that are on top of one another. This will then pull the purchase cost from that actor's component and update the text within the player widget. This also means that the cost text will only ever show on interactbales that can be purchased. again though this system is far from perfect right now but it serves its purpose well enough to start playtesting.
UI Menus:
I needed a way for the player to enter that game instead of just being dropped in. I started with creating a new mainmenu level and game mode which will be loaded first on game start. As of right now it is a very simple system which just includes some buttons. It will load the player into the main level when pressing 'Play Game', the 'Options' button is just a placeholder at the moment and the 'Exit' button will close the game. This again is nothing special but functions well enough for now. I plan on further expanding this in the future although it doesn't add anything to the actual gameplay so it's not essential right now.
The next UI menu I needed was a pause menu that can be used during gameplay. I set up a new widget and had similar things to the main menu in terms of buttons. The player can pause which will stop the game in the background while allowing them to navigate the menu. The player can resume play, and restart the game which just reopens the level which effectively restarts the game. They can exit the game back to the main menu which just opens that level and sets the game mode again as well as a full game exit. This allows the player to control the game as well as exit without having to leave the game to close the application. I then created a similar menu page for when the player dies. It will allow them to restart the game or exit.
Melee attack:
The next task is something that I have neglected for a large part of the project for no particular reason other than forgetting about it and also just doing other stuff at the time. I wanted to have a melee attack so that if the player ran out of ammo then still have an attack to use, albeit not very powerful in the later stages of the game. Using the melee is a risky action as the player will need to be right up close to a zombie to hit them. So I made it so the player is rewarded with more points if they get a melee kill. This provides some extra gameplay options for the start of the game as the player can use the melee attack to conserve ammo while also gaining extra points at the same time.
I started by creating a new input for the player character called melee and assigned a key on the keyboard within the IMC (input mapping context). This has all of the player inputs which then assigns keys or button actions to them. On the new input, I added some logic that will stop the player from being able to shoot as well as play the melee animation. once the animation plays it will call the raycast melee function that I created.
The ray cast is a similar setup to the guns however this uses a sphere trace instead of a line. This means that it is a lot more reliable at hitting objects in front of the player as the sphere trace will cover a larger surface area. The trace uses the forward vector of the player camera as well as the camera location to dictate where and how long the trace will be.
To detect hits I'm using the same Enum which I use for the guns which are custom physics materials that I have made which can be assigned to different objects. The 'Flesh' phys material is only assigned to the Zombie actor so the melee will only ever work when hitting a zombie (at the moment). I can then assign other logic such as sounds and VFX if it hits other objects that have different phys materials assigned, such as a ceramic jar or a glass window.
Level Updates:
This was the major hurdle for this week and would end up taking most of my time. I had a few problems with the level that would need fixing before proper playtesting could begin. I needed to make sure that all of the zombie spawners were set up to be outside of the map while also making sure that they can also enter the map from the outside. I needed to go around the entire level and add blocking volumes to everything. This is to make sure that the player can't jump outside of the playspace or jump on top of something which would lead to the zombies not being able to hit the player. Finally, I need to make changes to the nav mesh used in the level. I needed to make it more optimized as the level is fairly large now with lots of assets that effect the nav mesh. I also needed to make amendments to make sure the zombies are not getting stuck anywhere on bits of navmesh that are disconnected or weird bits of geometry. This is a huge undertaking and as completing the build for this week I've already found issues with it so the playtesting will be essential as I can't fully test it myself.
Blocking Volumes & Nav Modifier Volumes
Nav Mesh Changes:
The level uses a single nav mesh which covers everything. This leads to a lot of areas on the level generating nav data that doesn't need to be which causes a greater load on the CPU. This is compounded by the fact that the nav mesh is dynamically updating during runtime so that when doors get opened, the navmesh will update too. To fix this I spent a lot of time going around the level and manually placing nav modifiers which create a a volume that can have different effects on the nav mesh. Setting it to null removes the nav mesh from generating in that specific area. As seen in the picture above, the green area on the floor is only in the spaces around the playspace of the level as opposed to covering the entire landscape. This has cutdown the amount of nav data being generated by a huge amount.
I still needed to make further changes to the actual nav mesh to make it so that everything that needed it had it. This means checking things like wall edges and stairs for the most part and making sure there are no gaps. There are lots of settings for the nav mesh to help make it more optimized as well as more accurate and finding the correct balance can be hard. Making the nav mesh more accurate means that it takes more performance to generate it quickly but you end up with much better coverage. Reducing the accuracy gives you less coverage but makes it better for performance.
Epic have provided some detailed tips in their documentation which helped to improve my nav mesh accuracy and performance.
The main things to tweak were the cell size, tile size, agent radius, agent max slope, and agent height. Epic recommends a specific range of values for the cell and tile size so setting that first helps with the rest. The other agent values help to make it easier for AI characters to navigate the area.
Build Packaging:
As mentioned my main goal was to get my game packaged and uploaded onto my Itch page to start playtesting. I had done a package test a while ago which didn't have any major issues. When it came to this packaging however there were some shader map issues with a couple of textures. after some googling, I managed to find what the issue was and get it resolved by making some tweaks to the texture samples within the materials.
Once I had the game packaged it was time to upload the game onto itch. Itch only allows files of up to 1GB to be uploaded through the browser so I used the Butler service via CMD prompt to upload the build. This process will be really useful when it comes to updating the build as I can make pushes very quickly.
I set up the page with some screenshots of the level as well as a 10-minute gameplay video to serve as a showcase. Now that the build is live to the public I have set up a google form to hopefully get some feedback on the game.
So after a pretty hectic couple of weeks of panicking that my PC was about to die I'm back on track and working from home with my sights set on the final stretch of the project. My next plans are to start the 'Gun Upgrade' system, Finish the layout of the underground tomb area and set up an event to access the underground tomb area which is tied to the upgrade system. This is the last major gameplay system that I'm planning on developing however depending on available time I will look to make further additions if possible.
Comments