Where would be a good idea to put code that relates to spawning actors of background

I am using version 4. So I found out that I cannot do it in a Game Instance or a Game Mode. I would like it rendered before the first frame. I know that I can make this in the class for my main character, but I would like this to be more organized. What I want to do is add the things that might be seen and remove the things that will not be seen.

I will want to later add enemies but I am not at that part yet.

Put it in GameMode::BeginPlay().

Also, do you have a load map screen? We have a loading screen that stays up for a few seconds after BeginPlay() to hide any load in, pop in, etc. due to initialization.

What I said is a game mode does not spawn my Actors.

Depending on which version youre using Subsystems sounds like it might be the go, possibly a World Subsystem :sunglasses: