Class with a possessed child actor does not fall

I have a parent class called Camera, and a child class called Player.

Player is possessed at the beginning of play. Player is able to fall, but camera isn’t. Once make it so Player is not possessed, the camera now falls, along with the player, but now the player cannot move around.

What I want is for both the camera and player to fall, but the player can move around.

I have tested this with another, fresh class, and its the same deal. Once the class is possessed, it is no longer affected by gravity.

Hello ,

What type of class are Camera and Player? Are they direct children, as in Player inherits from Camera? Is there any reason that these can’t be two components in the same actor? In general, you should be possessing the parent in this situation, as the child inherits the position of the parent, not vice versa.