How It’s Played

The game welcomes the player with a certain amount of money available for spending on three different abilities and a start button. The first button, increases the radius of the ability that pushes the enemy marbles out of the track. The second one increases the money earned while the player is not playing the game (Offline Earning). The third one increases the amount of speed gained with the speed up ability. After pressing the start button, the player’s marble and their opponents autonomously rolls on the track. What the player does is utilizing the speed up and the push abilities in order to gain the upper hand.

My Role In the Game

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

General Role: Designer, Programmer

When I was given this project, it already had it’s tracks and marbles fitted inside. There also was functional UI buttons with default ugly Unity sprites. I designed and implemented an ending parade. And focused on the problem of fixing the naturality of the physics. We wanted to have a natural, physical feeling for it. I personally believe it was the hardest part of the project because it had to be an efficient, reasonable and applicable fix to work and most important of all it had to give the player a natural, physical marble racing experience but on the other hand I had to keep everything intact. The thing that made it really difficult was the fact that the marbles coordinate system was constantly changing and I had no way of finding an easy fix. When I first got my hands on this project, the speed up button resulted in a chaotic and aggressive zig-zagging through the track. First thing I tried was to add an empty object on top of each and every block of the track and also adding trigger colliders to them to know which block my marble is on. Wrote a script and attached it to the blocks to know where our marble is and to check whether it is grounded or not by raycasting to our marble from the empty game objects attached to every block. Unfortunately it did not yield the results I needed. Then I used the trigger colliders to create an array of track blocks and also constructed a way to reach the next block. I carried the empty object on the marbles level. I had to change the speed up mechanic from top to bottom. I lerped the velocity of the marble when the speed up button was used towards the next block it would go through. The result was great and I optimized my solutions variables to get the best outcome as possible as I could. After fixing this problem I completely renewed the UI buttons by adding new sprites, created a podium finish scene; fan marbles with flag animations, the podium itself from scratch with another script and made sure of the general integrity of the project. There were lots of bugs, undesired mathematical errors and logical mistakes. Now I’m really happy with the end result. One of our publisher partner companies wanted for us to develop this game and loved the game I presented to them in just two weeks.