I’m new to Unity and am hoping to get some help in researching a tricky situation:
I’m looking into if it’s possible to put multiple Unity games within one iOS app. For example, the user would launch the app, pick a game from a menu, the game would start, the user could exit the game to return to the app’s menu. All of that would happen within a single iOS app. Note that a similar question was asked before (Multiple unity games in 1 app in ios and adroid - Questions & Answers - Unity Discussions) but it’s a couple of years old and I’d like to cover a few things that I think are unique to my situation.
My reading of Apple’s App Store rules are that it’s allowed as long as all the executable code is bundled within the app and that the app isn’t trying to create its own app store.
That leaves whether or not it’s technically possible. From other discussions (e.g. https://forum.unity3d.com/threads/one-unity-game-app-with-multiple-games-inside.239583/) I take it that one strategy would be to make each game a scene within one Unity project (and use Apple’s On-Demand Resources feature to download game/scene-specific assets to keep the app’s size down).
-
How difficult or problematic would that each-game-is-a-scene setup be to pull off if the games are being developed by multiple teams?
-
Would that each-game-is-a-scene setup make it difficult (i.e. a lot of extra development effort) to release some of the games independently as well? For example, say Game 1 is released as a standalone iOS app but is also included within the multi-game iOS app.
-
Instead, if each game were a separate Unity project, is there a way to then release them all as one iOS app?
Thanks for the help!