Odyssey

A Visual Novel RPG


I developed a tech demo for Odyssey as my main project for the Mastered bootcamp. As I participated as an Unreal Engine 5 programmer, I spent most of my time on programming the game's core systems. Check out the code on GitHub.
Odyssey features a variety of different UserWidgets for the different menus and UI elements in the game. Some examples include the inventory system or the dialogue system. The menu system is designed in a way, where all the different menus are children of a single parent widget (UIManager) with a widget switcher responsible for activating and deactivating the different menus. This makes it easy to activate any menu from anywhere in the game, as long as the UIManager is accessible. It is also simple to add additional User Widgets to the UI Manager.
First we create the parent widget containing a widget switcher:
Next we add the different menus as children of the parent widget:
We can then display any widget:
An interface can be used to prepare a widget before it is displayed, for example to update the inventory UI to reflect inventory contents.
Coming Soon