Arcane Reclamation
Arcane Reclamation is a mage movement game, where you utilize your magical spells for combat, and movement abilities for parkour, and dodging enemy attacks.
Overview
Story Based Tutorial System
I created a scalable and modular tutorial system that allowed the designers to implement story-based voice overs, instructions, and the ability to slow time, with checkpoint functionality anywhere in the game.
Satisfying Dash
I focused on making the dash feel as satisfying as possible. Through testing I found the best feeling impulse vector to slightly bump you in the air as opposed to just throwing you forward. Post processing was also a huge factor in the feeling of the dash. I incorporated a mix of lens distortion, chromatic aberration, grain, and bloom to make it feel like you were ripping through the air and almost bending space time because of the immense force of your dash.
Instructional Slow-motion
I gave designers the capability to slow down time during desired tutorial beats in order to allow the player to internalize instructions pertaining to more complicated mechanics.
Takeaways
Arcane Reclamation was a project that was a little larger in scale compared to my usual work. The game being bigger has allowed me to learn a couple of key lessons. Perhaps the biggest lesson was that of scalable and modular code. I made sure to implement features in a way that would make it very easy to add on to them, and replicate them further into development, both for programmers and designers. Although this was something I always knew was the “correct” thing to do, experiencing this on my own has opened my eyes on new approaches to my code and the true importance of the SOLID principles.
I also learned the very important difference of writing code that synchs with the graphics draw calls, versus physics ticks, and synching in between or after them. Learning this has allowed me to deliver a much smoother fps movement and combat experience as a result.