How can I switch from first person view to top down (RTS Style) where the camera would move and not the player?
To be more clear, I want to switch from FPS view (where player controls the movement of the character) to a top down view (where the player then controls the camera instead).
I tried doing it two ways:
By having two different cameras inside the character blueprint and using set active to change between them, but I couldn’t figure out how to move the camera without moving the actual character.
By having a separate pawn with the top down view that the player would then posses. I tried this but after possessing I was unable to move the character & the view did not switch to the newly possessed actor.
I think if you want to use an actor as a camera, you could attach said actor to your character and “set view target with blend” rather than possession. You can still have the camera use control rotation
How could you differentiate movement between the camera and the character then? I want to be able to move the camera on the X & Y axis while the character does not move.
Ex: WASD in FPS moves the character normally, then when you enter build mode; WASD would no longer move the character & would now move the position of the camera along the X & Y axis.
Add a branch or switch on your movement input. Depending on what solution your going for you can either set the relative location of the camera actor or the socket offset of your spring arm. Again, I recommend using a spring arm. Let me know how it goes and if you have any more issues
Any way you can explain how you got this working? I am trying to do something similar but with 3rd person and not first person. Any help would be great.