How do i rotate my player in top down view without moving camera?

I assume you are using USpringArmComponent for your camera:

SpringArmComponent->bInheritRoll = false;
SpringArmComponent->bInheritYaw = false;
SpringArmComponent->bInheritPitch = false;

Should do it.

2 Likes