If you are using the same gamemode bp for every level, will that gamemode get triggered once when each level loads?

So in essence its Begin Play will fire again everytime a new map loads that uses it?

Yes. The MAP (Level) loads the Game mode assigned to it in Game Settings.

1 Like

the “Load Map” function will initiate the game mode associated with that level,
The class of this GameMode actor is determined by (in order)

  1. either the URL ?game=xxx,
  2. the GameMode Override value set in the World Settings,
  3. the DefaultGameMode entry set in the game’s Project Settings.

so yes, loading a map will trigger the begin play of the game mode,
the exception is loading streaming levels, they do not create a new game mode, but instead continue to use the game mode of the persistent level.

1 Like

Thank you Rev

Thanks Cornelius

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.