The station security system has been activated! How many security consoles can you reach before time runs out?
In the summer of 2018, I was determined to create as many and as varied games as I could. I ended up putting together three games in as many months and genres. These games are Climbing the Dragon Tower, Bug-Bot Blitz, and Star Empire. While these three games don't match up to the standards I have for my work now, they were each valuable learning experiences that helped me master a variety of skills in game design and game programming. I revisited the concepts for Climbing the Dragon Tower when I developed Heroes' Climb, and these past couple months I have revisited Bug-Bot Blitz with this direct sequel. Comparing the two games helped me appreciate just how far I have come in two years and provided a nice break between Star Legion and what I have planned next.
To introduce Bug-Bot Blitz 2, I'd like to walk through key features that were improved upon compared to the first Bug-Bot Blitz or were not even present in the first game.
In the original Bug-Bot Blitz, the player could see a target's health only when landing hits on the target. Since making the first game, I have learned so much about Unity's physics engine and now better understand ray tracing. I used these skills to efficiently allow the player to see a target's health simply by aiming at the target. Similar ray tracing techniques were also used to prevent the rifle's laser from clipping through parts of the environment.
The second major improvement allows the player to aim down the sights of their laser rifle. This feature would have been difficult for me to implement in 2018, but this time around it was fairly straightforward. When the player presses the button to zoom in, three things happen:
Neither the sliding of the rifle nor the change to field of vision happens instantaneously. Both actions occur over the same very quick amount of time. Just like the ray cast aiming, I understood the individual pieces of this feature while making the first game. However, the practice I've had over the intervening two years made bringing the pieces together fairly straightforward.
Finally, a smaller detail that was added was the particle effect emitted from the point where the rifle's laser meets either its target or the environment. This was simple to implement using Unity's particle system, which I had not yet learned while making the first game. This, paired with the sound effects added to the laser for the second game, accomplishes a level of detail that makes Bug-Bot Blitz 2 feel more polished than its predecessor.
When creating the first Bug-Bot Blitz, I had wanted to create procedurally-generated levels to give the game greater replayability. However, I didn't even know where to start. In the end, the released version of the game featured a single station made up of four rooms that remained the same through every time playing the game.
When developing Bug-Bot Blitz 2, I had the advantage of two more years of study and practice, particularly in graph algorithms (departing from game design to a little computer science here). The stations in Bug-Bot Blitz 2 are created using an algorithm that picks a starting room and builds outward semi-randomly until the required number of rooms have been placed. The algorithm works much like a breadth-first search algorithm in which the vertices (in this case station rooms) have a random number of neighbors. Each room starts with one guaranteed neighbor and adds neighbors incrementally. The higher the number of neighbors n, the less likely a room is to acquire another neighbor and raise that number to n+1. Of course, no room can have more than four neighbors. This method guarantees that every room is accessible but still creates complex, sometimes maze-like stations. Each of these rooms is populated with a random set of internal furniture, populating the station with rooms like the power station, barracks, command center, and botany lab.
One of the biggest problems with the original Bug-Bot Blitz was the difficulty of knowing when a Bug-Bot was attacking the player and knowing when the player got hit by one of those attacks. Bug-Bot Blitz 2 takes multiple steps to improve on its predecessor in this regard:
In addition to the difficulty in knowing when the player was taking damage in the original Bug-Bot Blitz, it was difficult to tell when a Bug-Bot had taken enough damage to be destroyed. In the first game, a destroyed Bug-Bot simply shrinks away before disappearing. This often led to players shooting a Bug-Bot longer than necessary, wasting valuable charge on their laser rifle and valuable time on the game clock. As mentioned before, use of Unity's particle system was one of the many skills I honed in the last two years. Using the particle system, Bug-Bots now explode spectacularly when destroyed. Even from a distance, it is now easy to see that the player's target has been destroyed.
Developing my skills means I spend less time making simple things like the player's rifle work and I can spend more time on smaller details within the game. Things like laser clipping, the particle effect at the end of the rifle beam, sound effects for explosions, and UI changes based on playtester feedback all helped the Bug-Bot Blitz 2 reach a much more polished state than the first game. Additionally, I have developed a number of tools across developing my hobby games - such as a jukebox script that creates and manages music playlists - which help me focus more on the things that make each game unique.
One major change intended to separate Bug-Bot Blitz 2 from the original Bug-Bot Blitz was the choice to require the player remain in a radius to activate terminals over time rather than activating terminals instantly. The instant activation of terminals in the first Bug-Bot Blitz resulted in a speedy, racing feel that drove the player quickly from objective to objective. By making the player stay still for even 15 seconds, Bug-Bot Blitz 2 creates an opportunity for the Bug-Bots to close in on the player, creating exciting shoot-outs that contrast greatly from the moments of speed and evasion between objectives. Both gameplay designs have their merits, but speaking as the designer, the terminals in Bug-Bot Blitz 2 were much more thought out.
I am very excited to be sharing Bug-Bot Blitz 2 - perhaps more so than most games. It is close enough to the original Bug-Bot Blitz to show how I have furthered myself as a designer and developer, but it is also different enough to stand as its own title.
I look forward to sharing my future projects as well (perhaps a revival and overhaul of Star Empire next). Thank you for reading, and good luck racing the clock and fighting the bots in Bug-Bot Blitz 2!
The 32-Bit version of "Bug-Bot Blitz" in now available on PortableFreewareGames!
The station security system has been activated! How many security consoles can you reach before time runs out?
The station security system has been activated! How many security consoles can you reach before time runs out? This is the 32-Bit release of Bug-Bot Blitz...
The station security system has been activated! How many security consoles can you reach before time runs out?
Only registered members can share their thoughts. So come on! Join the community today (totally free - or sign in with your social account on the right) and join in the conversation.