How to pass an actor (pawn) to a PlayerController?

I have a level BP where a player pawn is spawned to the level.
There is a Player Controller in the project.
So I need to be able to control the pawn which have been spawned at the level.

The QUESTION is:
Where should I possess the pawn to the player controller?

Hey @VictorDDT!

You can either use blueprint nodes like this:

Or in your character blueprint, navigate to the Details window while having self selected, and the Auto Possess Player setting to Player 0 like this:

Screenshot 2025-02-16 193702


While we’re on the subject, I also wanna add that you’d probably wanna bind the input mapping context after Event Possessed instead of Begin Play in your character blueprint’s Event Graph like this:

Hope this helps! :innocent: