Grapple Go | Sprint 4 | 10/9-10/23
Grapple Go is the game my team and I are developing for our Mobile Game Development class at Chico State. I hold the role of programmer and my team consists of Justin Culver as producer, James Songchalee as designer, and Sophia Villeneuve as modeler. Our game is a 2D side-scrolling infinite runner, similar to Jetpack Joyride, where the player mainly interacts through the use of a grappling hook to dodge obstacles and enemies. The player's goal is to try and cross as far a distance as they can while racking up their score to be later used to buy upgrades, helping them in their next attempt.
This post details some of my process working on the game during Sprint 4 of our development phase
| Shop Demo |
For this sprint, I didn't actually encounter too many challenges or issues with my work. Instead, however, I got sick for a little under a week, which made it way harder to focus on and complete my work for much of the sprint. This definitely led to me not completing as much work as I'd have liked. With that being the case, I'm also quite satisfied with the things I did get done, and I think I've delivered a little on the goal I set last sprint to try to produce higher quality work more efficiently and thoughtfully.
One technical issue I did encounter this sprint was a g
ame breaking bug found during our first Alpha playtest, consequently making the playtest that much more difficult. The most consistent time I found it occurred was when the player died while activating the grapple, which I assume led to an event order error. The grapple is reset as soon as the player dies, but I think that there was a tiny moment where the grapple detected the input after the player has already died, and reset the grapple, consequently activating a flag on the grapple improperly and breaking it. This was an easy fix, just also resetting the grapple at the start of a run, but I'm still not certain that the cause I determined and addressed was the only one; I still need to test it more thoroughly. This issue re-highlighted a flaw in my work process once more for me: my hasty testing. I was only ever able to recreate the bug on a mobile device, my phone, but never with Unity's simulator on my desktop, which I of course spent most of my personal testing time on. This has hammered into me again the importance of thorough and patient testing of features which I think I'll be practicing for a while.
| Save Demo |
| Platforms Demo |
As I mentioned, I didn't complete as much work this sprint as I'd of liked, but I am quite satisfied with what I did complete. The first thing I did was implement a simple stat system to build the upgrade shop off of. The current stats include things like climbing speed for the grapple and player and durations for the powerups.
Next, I worked on the shop itself. I blocked out all of the basic upgrades the player will be able to purchase and implemented the system to actually buy and use those upgrades. Currently, the UI doesn't scale to the size of the player's screen correctly. UI scaling is something I've not fully understood in Unity for a while, so I'm planning on visiting my professor for help with this right at the start of next sprint so I can really make sure I get it. In fact, I had planned to do so during the middle of this sprint, but got sick right before I could. As of right now, the shop does still have room for improvement. The upgrades all increase completely linearly; each upgrade improves by the
exact same amount and costs the exact same amount, which could be updated to enable exponential or similarly curved costs or returns.
| Turret Enemy Demo |
I implemented a platform for level design that the player will die if they run into the side of, but still allows them to run on or grapple onto. Lastly, I created a stationary turret enemy that will fire obstacles in the player's direction.
Planned Work
At the start of Sprint 5, we've completed our core gameplay loop and minimal viable product. Now, I'm planning on finishing up the last of the core planned features, such as the last three powerups and audio triggers, before focusing on polishing and bug fixing.
Comments
Post a Comment