First person sitting and view target blend

Hi all. I’m currently attempting to make a sitting system for my first person game. It doesn’t need to be special at all, in fact all I want to do is hide the character, stop keyboard input and view target blend into where the camera is in my bench blueprint. As you can see from the attached screenshots, I have a blueprint that spawns two cameras in set locations on the bench, and when you interact it blends to the proper camera. The issue I’m facing is that regardless of the Spawn Transform of the camera actor, it always seems to spawn at 0,0,0. How can I get the cameras to spawn locally in respect to the blueprint?

Also, once it blends I still have movement over the first person character rather than mouse movement of the new camera. How can I disable the input on the FP character and allow it on the camera? Thank you in advance!

1 Like

The spawn node assumes a world transform input. Just pull from the cam reference and use ‘get world transform’ :slight_smile:

Thank you! This worked like a charm. As for my other question, do you have any idea how I could possess the camera so I have control over where I’m looking? I made a separate forum post asking about it but considering your status I figured I’d ask once more (sorry!!) Here’s the other post: Allowing only view control while on specific camera

1 Like

If you’re only blending to a camera, or just a blueprint that only has a camera in it, you won’t be able to control the camera until you include basic movement code. So the pawn blueprint on the seat, needs just enough code to be able to turn the camera. You can copy that from the first person character.