I have this game which has a temperature meter. When it reaches 100, the player is set as dead, their input becomes disabled, an animation plays of player collapsing onto the ground and a game over widget appears on Hud.
The issue I’m having is that I’m not sure how to create the camera animation of player collapsing. My first thought was to create a new camera actor where player dies, setting player’s view to that actor and then playing a sequence, the issue is that the sequencer (as far as I know) can only record world offset and not the local one, thus the animation would always play out at the exact same place in every map. Also I’m fairly sure it needs a reference to a specific scene component and not a random instance of the blueprint.
I thought about using timelines, but then I’d need 6 different track for each axis.
I might try to use Blender to animate a camera, but I have barely to no experience with Blender, so I wouldn’t even know where to start.
Anyone has any idea about how to handle this?