My Scratched Designs

I had different design ideas of mine implemented in the game but they were considered too hard for an hyper-casual game.

I implemented a drag system that gradually increased the velocity instead of having it constant.

With that approach, I implemented different levels that had moving buckets that the player had to aim at. It was a much more entertaining and an interesting experience.

How It’s Played

The player needs to start holding on the screen to start spraying water. Then to aim, they need to swipe their fingers to adjust the x-axis to allow the water into their water buckets. The first scene worked with pure Unity physics but the latter were designed without the physical aspect to allow diverse level design. After filling the water bucket with adequate amount of water drops, the mechanism is triggered and launches the boulder towards the losers side. Every level is divided into three challenges. If the player manages to beat one of their opponents, their character jumps towards the next one which is programmed to b a little bit harder to compete against.

My Role In the Game

Language used: C#, Developed in: Unity Game Engine

General Role: Designer, Programmer

I developed each and every script, game objects, the UI, everything except for the artwork. At first, as I stated in the “How it’s Played” section, the first scene depended on the physics of Unity. Driven with the idea of creating a weight balancing competition on a seesaw, I created the seesaw object’s script responsible for controlling it’s state to act accordingly. Thanks to Unity’s physics, the motion of the seesaw was directly related to the weight of the buckets I attached to both it’s sides and the amount of water drops inside of them. I created the AI opponents and their scripts that determined their actions. At first I designed it so that the AI would miss sometimes by relating their miss chances with their assigned difficulty levels. But that decision was reverted as well. I continued by creating a duel manager system with scripts to stabilize and fortify the game’s logic. The challenge I faced was the scarcity of level designs I was capable of producing whilst using Unity’s physics engine. I decided to take a different approach and create mechanisms without using physics that behaved differently to reach the same outcome (A boulder in the face of either the AI opponent or the player). The problem that arose with this approach is that I was using the namespaces of my classes such as the seesaw’s script to reach and manipulate the game’s core logic. Thanks to my education and my design pattern capabilities, I wrote an interface for the mechanisms I created with the same method names that handled their different behaviors and shaped my game managing scripts accordingly. After that it was pretty easy for me to develop a new mechanism.

Side note:

This game was a special breaking point for me. It was the first game I’ve ever made professionally and it yielded promising results until after the soft launch phase. What I want to emphasize is that this game showed me what I’m capable of and gave me a boost of confidence.