Hello everyone.
How can I make that the player spawn where the character pawn is located without the PlayerStart?
I can’t find a way to do it.
Help please, thanks.
Hello everyone.
How can I make that the player spawn where the character pawn is located without the PlayerStart?
I can’t find a way to do it.
Help please, thanks.
First of all you don’t need to use default spawn system, if you set Default Pawn to None engine will do nothing, just spawn actor yourself and make Player Controller possess it.
Also engine spawn system allows you to pick any actor as player start (in reality PlayerStart class is practically there just for convention sake), you can override how player spawn system behaves by overriding function in GameMode, here some example:
But again you can ignore all that and disable system and mange spawning complitly yourself if you wish
Ok, thank you!