I’ve created a character blueprint with a skeletal mesh, a capsule, and a camera attached to a spring arm. Whenever I start playing, the camera is in the wrong place - it seems to ignore the spring arm - and has the wrong field of view, but otherwise responds correctly to my blueprint (it zooms and rotates as it should). I suspected it might not be my camera at all, but a “default” one that is created when I press play, and yes, this is exactly what’s happening.
It’s the wrong camera with the wrong initial settings, but it behaves exactly like my player camera should, so my blueprint and the spring arm do affect it somehow!
I’ve figured out that my problem might have something to do with something called “player camera manager class”, which I have to create - otherwise the game uses the default. However, the documentation contains no information about such a thing, and the tutorials on how to set up a player camera leave that part out.
I’ve created a “Player Camera manager Class” and set my player controller to use it, instead of the default. I set the default field of view to 80, but the camera created on startup still has the fov set to 90, so it appears the Player Camera Manager Class does not affect the camera settings at all. Do I even need it?
How do I get the game to use the camera in my character blueprint?