How Would I Make a Simple No-Movement First Person Character?

Not Sure if i’m doing this right.

I am new to unreal engine and want to make a very simple system where you use the camera to look around.

I don’t want to be able to move however, and all the information I could find includes movement.

Anyone know how I could go about this? Or know of any sources that can help me?

Any help is appreciated.

Thanks.

Hi, disable movement from your character movement component (then you can still look around but won’t be able to move).

disable_movement.png

[HR][/HR]
Or create a new character blueprint that can only look around without any movement logic. Then you would create a new character and only add this code to it

char_look_around_only.png
So basically just add rotation to the character based on the mouse input.