How can i integrate several minigames into one project?

Hi everyone,
I’m quite new to unity and have just finished my first game, a 2 player joystick game similar to football. I would like to expand my project so that I can integrate multiple minigames into one game (to clarify when you open up the app you’ll have the choice between say 3 games to play with which you can select from a start menu). I tried using different scenes and scene manager to create the other minigames but I’m 100% new to that and not sure how it works and if it’s even the best solution (I failed of course). Anyways what would be the best way for me to integrate those other minigames?
Thx a lot:)

Hello @TLgino !

Well, you have 2 options,

One is to have different scene, but this will make the game load and unload scenes all time, and if the minigames are, as you say, mini, i reccommend the second options.

The second option is to have everything in the same scene, all games as diferent objects active and unactive. So you activate the minigame object you need and disabling the others,

Each minigame will have its own script, its own canvas, (and if its 3D, each own 3D objects), and you only need to move the camera.

As you are still new, i strongly recommend to spend some hours watching tutorials about makeing games, complete games. There are thousabnds of youtube tutorials that shows all you need. Is better to spend some days only learning, watching tutorials, and trying things before commence the “real project”.

Good luck!

@tormentoarmagedoom Thx a lot for your answer! It was rly helpful and precise plus you’ve saved me a lot of time thx:D