Hi @Boricmars
here are two possible solutions to your problem:
- 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.
- 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