One Unity Game (App) with multiple Games inside?

Hi

I’m new on unity and are now on the Evaluation if the Framework fits our Needs.

Our Project will be one app for iOS/Android/Win8Phone and should have a start Screen for Login and the stuff, and then a few games to select.

Is it possible to create a App, and link other Projects to one togheter. so that i get at the end ONE APP where i can select which game i decide go Play (Multi game app)?

Thank you for any tips
Volkan

Sure Volkan.

Like any game building software, I am sure, unity has levels! or scenes as they are called. Any level, or scene, can contain whatever you want. So, if you want to build a game like Frogger is scene 1 and a game like Super Mario Bros is scene 2 its not a problem.

The only thing you should be concerned with is asset size, mainly, potentially, each game could contain different art. Especially since you are building for mobile, size matters.

Ps.
My last name is Moffat, my nickname for sometime was MoPhat! MoPhat.

Hi renman3000

Thank you for the info.

I will try if i can go with unity3d or to Change to any other platform, because i Need it only for 2d games with the ability to Change the “games” inside the app without changing the hole code…

I’m coming from visual Studio (c#) Solutions/projects and there is no Problem to create several Projects in a solution and re used it again… yes its a another Situation :wink:

Thx
Volkan

Hi,

I am new to the world of mobile game development. Any leads as to how to achieve this? I am also looking at having one app with multiple games inside. Any pointers will be highly helpful. This could be for any dev environment.

Regards,

Use namespaces to segment code between games, organize game assets into separate folders, first scene running the wrapper game is just a screen to pick which game to load… which just loads the first scene for that game.

Theres no magic needed here.

1 Like