Project : Visual scripting exercice
Engine : Unreal Engine
Platforms : PC
Status : Working prototype
Date : 2021
This project is a game prototype based on a Third Person rolling ball type of gameplay.
I wanted to (re)learn basics about visual scripting and go even further to strengthen my skills. It was a good opportunity to improve my understanding of some of Unreal’s tools, visual scripting logic, component’s arrangement etc.
After getting this project done, I’m feeling really confident when thinking about making functional customizable systems, mechanics and prototyping new things in Unreal blueprints/visual scripting!
There are several different interactive items in the prototype such as coins, bombs and health items.
Each of those items share the same trait, they are pick-ups.
Considering this fact, I built a base Pickup parent class which would define a pickup’s base behavior.
Each pickup comes with its type and values, contained within itself and communicating these to the pickup base.
Between each level, variables are stocked into save states.
When entering a new level, this saved state is loaded.
Picking a coin will add a custom amount to the player’s score.
By counting dynamically every collectible coin located in a level, the scoring HUD can show the player’s progress inside the current level.
The point system is flexible, changing it won’t break the progress HUD or score count.
BP_Coin
When the Ball controller overlaps with a pickup, it will trigger the OnPickup function.
The child blueprint (Coin pickup here) will achieve a specific task until going back to its parent, the PickupBase blueprint, to continue with the common pickup behavior. In this case, the coin pickup will increment the score.
BP_PickupBase
Simple puzzle where a button opens a door.
When the Ball controller overlaps with the button, it will trigger a timeline that will move each of these elements and change materials
BP_DoorPuzzle
Timeline Door & Button