Personal Projects
Generic Wave Function Collapse - Unreal Engine 5 - C++ Implementation
I knew that I wanted to implement a procedural algorithm for my latest project, and decided on creating a wave function collapse algorithm as it seemed like a good starting point for learning more advanced procedural algorithms. To add more challenge to this, I wasn’t using it for generating maps, or textures but instead wanted it to interact with choosing which items to spawn into the map based on a variety of factors that were not known when starting the implementation.
read morePersonal Projects
Multiplayer Quest System - Unreal Engine 5
Multiplayer Quest System I decided to challenge myself by creating a multiplayer quest system. I wanted to create a system that would allow for a variety of quest types & quest rewards, and be able to handle multiple players.
The approach I went for was a very Object-Oriented one. Everything is split up into different classes that will handle the different aspects of the quest system. Quests contain stages which hold Objectives, which hold a set of prerequisites and rewards and they can track the progress via a Progress Object.
read morePersonal Projects
Multiplayer Inventory & Crafting - Unreal Engine 5
I have been working on a project that involves an inventory and crafting system. I have been using Unreal Engine 5 and C++ to create this system.
This system will need to be functional for multiplayer, easy to extend and easy to use. I have been using a lot of the built-in Unreal Engine features to make this system as robust as possible.
I have integrated the systems into the Editor and made it easy to create new items and recipes.
read more