Introduction
This project was inspired by this GDC talk about common 3rd person camera mistakes that made me want to replicate in a handful of days a few of the awesome things that the talk’s author, who also happens to be Journey’s camera programmer, did with 3C (Camera, Character, Controls) in that game! All the code for it has been written in C++, exposing functionality to the editor through custom DataAssets and Blueprint APIs.
FOV and Camera Distance


The pitch, fully driven by the player's input, also drives camera distance and FOV. A very low pitch that brings the camera close to the ground will bring the camera forwards and open up the FOV in a worm's eye view, allowing the player to take in everything that is happening above them. Conversely, bringing the camera above the character will drive it further away and narrow down the FOV, giving the player a bird's eye view. The camera smoothly transitions between this two states based on the pitch.
Camera reset


When the player does not give any input for a number of seconds tweakable in-engine, the camera will slowly reset to being behind the player at a neutral pitch. Any player input will of course interrupt this process, to always keep the player in control of the camera.
Math utils
This project was a great way to write a small utility library to handle Polar Coordinates in a more gracious way than Unreal’s FMath. To keep calculations simple, I decided to store and modify the camera’s coordinates in polar rather than cartesian, which meant having to write some custom functions to smoothly lerp between angles, since unreal’s built-in functions had problems looping from 2π to -2π. This revealed itself to be very useful, as I’ve been using this tiny math polar coords library ever since :).
Credits and Links
As mentioned in the introduction, thanks to John Nesky’s GDC talk for the inspiration!
Take a peek at the code on the GitHub repo :)
Written by Jo Colomban
← Back to blog