Exploratory 3Cs Project

This is an exploratory Unreal 5 project developed in C++ to explore the 3Cs (character, camera, control) under the guidance of a mentor from Ubisoft Singapore. You can download the demo here.

As this was my first time developing in Unreal in C++, I learned a lot about the different components and classes and how they work under the hood, and gained a deeper understanding of how the engine works. Below are the main features I've implemented, including basic third-person character and camera control, turn in place, and feet inverse kinematics.

Basic third-person character and camera control:

  • Broadcasted input from the player controller using enhanced input and delegates to reduce coupling
  • Character animation using state machines and blended animation sequences for smooth animations
  • Additional animations such as the head turning to face the look direction is done using additive blends so they can be overlaid on different states
  • Character animation blueprint is a child class of my own UAnimInstance, which allows variable values to be calculated in C++ and exposed to the character animation blueprint for the animation graph
  • Character state represented in a struct and maintained by the character class
  • Character data values set through data assets

Turn in place:

  • Initially implemented in a state machine in the animation graph that responds to the character state, but this made the animation hard to control and combine with other animations
  • In the end, I used slots to dynamically insert the turn animation from the character class - this gave me much more control over when and how the turn animation plays and how to blend it with other animations
  • Actual character rotation is driven by the rotation value curve on the turn animation for a more natural feel

Feet IK:

  • Implemented with foot locking using virtual parent bones
  • Lerps the location and rotation of the foot lock and foot bone position based on the floor height and current animation

This project is still in-progress. The next planned feature is a rope swing.