As a UI Engineer on Hogwarts Legacy, I engaged with most of the gameplay systems throughout the game, implementing and addressing bugs in everything from inventory actions, quick time events, player abilities and camera control, competition minigames, scripted AI event sequences, and complex questlines. The two features that I'll highlight are ones that I worked on to help create a more fluid and magical experience for players learning the mechanics of the game. They are the Spell Minigame and the game's tutorials.
Minigames
Any time you learn a new spell, you play a minigame tracing the movement that you would make with your wand. This was introduced as a way to bring in the spell movements that exist in the Wizarding World and add more magic to gaining a new spell.
I programmed all aspects of the minigame, working with our UI artist to add in the desired assets and our writer to make sure the tutorial pop-up text went through localization properly. Additionally, I adjusted the camera placement and worked with the VFX team to add the darkened overlay on top of the gameplay. The minigame was heavily tied into another aspect of the game I worked on, tutorials and learning mechanics. The process of seeing someone else use the spell, doing the minigame, reading about the spell, and then using the spell in gameplay helped to solidify the mechanic in a way that stuck.
The process of fleshing out the minigame took a few months and several iterations. One of the most engaging aspects of working on it was the ability to get real-time feedback on the adjustments I was making. The first iteration was more like a top-down, physics-based racing game, where you pick up boosts as you go along the path. Working with our designers back and forth and seeing our playtesters struggle with controls but have fun once they got the hang of it gave me a better perspective as I reworked it to be what it is now. Further hurdles appeared with the fact that the path had to not only be navigable for minigame gameplay but also update the texture materials along with the progress of the player. This I did by sampling the brightness value of a gradient that matched the spell path, giving a progress value from 0 to 1.
There exist about 20 spells that you learn this way, which means 20 separate minigames with their own distinct paths. All of which correspond to wand movements in the Wizarding World lore.
With this many distinct spell paths, modifying texture materials, fine-tuning speed values, boost button inputs, and placement along the path would all be time-consuming. To allow designers to easily modify the games and their difficulty, I created a tool in Unreal that allowed them to customize the layout of each minigame via an interface. Designers could define the path with a curve editor, place and define button prompts along the spline, and edit the range of button presses (how close your orb should be before you can press it, or how far before it becomes a failure). This would be translated into data that the minigames would read upon loading. I think for sure if I had any doubts about my understanding of linear algebra, the number of line projections I used in the creation of this minigame got rid of them.
Tutorials
In addition to the spell minigame, I managed over 100 distinct tutorials throughout the game, from more passive popups with optional player engagement to more complex scripted sequences tying into gameplay, cinematics, animation, and player progression. Though there were many, each one needed to flow naturally, use effective language, and fit in with the larger picture of where the player is in the game at the moment.
This tutorial, for example, prompts the player to open the map using the correct key, places the Hogwarts Map camera at the optimal angle to show both possible quests, shows tutorial pop-ups in locations that don't overlap anything else of importance, prompts the player to continue at each step, auto exists after the player tracks a quest, and then hooks into the steps of the current mission to trigger a dialogue sequence with professor Fig. It also comes at the first moment where the player has multiple quests and can start to freely explore Hogwarts. Following the conversation, a more passive tutorial about using your "Charmed Compass" teaches you how to follow an in-world line toward your tracked quest.
In an open-world game with complex systems that build off of your base understanding of the game, it's these sequences that allow players to gradually build up the knowledge of how the game's systems work.
When combined with minigames, it offers a safe and fun environment to learn mechanics that will later be used in more stressful combat situations.
With many spell-related tutorials, we decided to show a pop-up on how to use the spell first. This pop-up ties into the spell-casting gameplay logic to go away when we cast the correct spell. That pop-up is followed by a description of the spell and what it does, which gives context to how the player just used it.
One of the advantages of working with the tutorials was the fact that I got to work with the code of almost every gameplay mechanic to trigger tutorials that taught the player how to use it.
Players Learning Mechanics
Working on the spell minigame and tutorials required in-depth knowledge of the environment the player is in, the goals of each mission, and how each gameplay mechanic ties together, both conceptually and from a programming perspective to program them in the most effective ways at the most effective times.
When everything ties together, you get an experience where the player enjoyably learns a spell, learns how to engage with the gameplay systems to use it, and can have fun with it.