Jo Colomban

← Back to blog

Published on 2025-01-30 17:00 by Jo Colomban


Portfolio : 1st person fishing system

An Unreal Engine 5 first person fishing system

Introduction

This project aimed to create a in-depth, arcade-y, designer-tweakable first person fishing system for a fishing horror game. All the code for it has been written in C++, including the custom UI Widgets, exposing functionality to the editor through custom DataAssets and Blueprint APIs.

Aiming

The player is required to pick up a spear from the ground and approach the fishing area. That initiates the first part of the fishing process: aiming.

Aiming minigame

While aiming, the player has to bring the two aiming sliders in the green area of both their vertical and horizontal bars. Those bars move as the fish tries to get away, so the player has to actively "fight back". Once both sliders are in the green area, the player can throw the spear and initiate the second part of the fishing process.

Aiming UI

The UI for the two bars is made of custom C++ Widgets, and the values for the green and orange areas are fully driven by the data assets (as shown to the left) that define a fishing event, ensuring that changing the bars' behavior and look is as easy as creating a new data asset in-editor, without needing to touch the code.

Reeling

Once the player throws the spear, the second part of the fishing sequence starts: reeling the fish in. To do so, the player has to keep RMB pressed while solving a series of quick-time events.

Quick-time events

Quick-time events (QTEs) can be defined in-editor through data assets! This allows a designer to quickly add any amount of QTEs to a certain fishing event, defining for each of those QTEs all the parameters shown in the GIF to the left, giving ample options of randomization and repetition without needing to write any extra code.

Take a peek at the code on the GitHub repo :)

Written by Jo Colomban

← Back to blog