Hello everyone, I have a problem I’m not quite sure how to get around. I have a third person character on a big platform that can be possessed by the player to fly it through the air, on this platform there are other pawns that will be cannons (currently just towers) that the player can also possess if they are not steering the platform. The problem is when the platform starts moving the other pawns (cannon towers) on the platform do not move with it.
Here is a picture to show the level
The player walks into a trigger and then possesses that pawn.
Because your trigger overlaps all kind of objects with collision enabled, not just your player pawn. You’re not checking if it’s colliding with your pawn.
So if anything is colliding with the triggerbox, the enable / disable input is getting executed.
I don’t understand your initial problem, but you can only possess 1 actor at a time.
If you want to control the cannons while the platform remains possessed, you have to reference them somewhere in your controller or pawn and control them without actual possession.