What is the best solution if i want to switch between games?

Hi @Boricmars :slight_smile:
here are two possible solutions to your problem:

  1. Simply Switch Cameras: When you switch the camera you could pause the whole game and set the relevant actors for your mini game to “Tick Even when paused” or you set a boolean in your GameMode/GameState/GameInstance that a mini game is running and according to that all other Actors have to wait.
    image
  2. Switch Game levels: You can load the level async and you can use a different GameMode for your mini game. Yes you have to save the current state of your main game. I would go with this solution :slight_smile:
3 Likes