Conquest

Source code available on GitHub
Element
Element

Weapon System

I created a data oriented weapon system, so you could create weapons without ever touching C# code. This utilized the engine's Asset system which is absolutely great for designers and people tweaking values for balance, since you don't have to recompile anything yourself. It's super fast as well.


UI

I created all of the UI - it's based off designs from Battlefield 2042, but entirely done in HTML & CSS for templating, and C# for game logic.


Pinging System

I wrote a quick pinging system that allowed for context based pings - for example if you're pointing at/nearby an enemy, it'll send the server a request to place a ping of that type to your squadmates.

Element

Game Modes

The game supports multiple game modes, which is awesome for added features along the line. The way the game mode system is set out is by using inheritance, which allows for child classes to be created without the need to duplicate code - reducing code bloat within the project and enhancing the fluidity of the codebase.


Input Hints

The game supports input hints, which are driven by what your active input device is, and will change to glyphs served by Steam Input.

Element

Thank you for reading!