1

I have multiple scene in my project and I don't want to embed all scene in apk because of size of application. I want to import the .unityproject or unity scene dynamically(download from internet) and render it in app. Is it possible ? Do we have any other possible way to implement this?

Thanks in advance.

  • 2
    1.Download the scene from the internet with the `WWW` API. 2.Load the downloaded scene. Which part are you having hard time with? You should update your question with your code and where you are stuck.... – Programmer Jan 24 '18 at 10:24

1 Answers1

0

I think Unity only compiles (to apk in this case) the scenes added to the File-Build menu. So you just need to remove the scenes you don't want to compile in that menu.

The exception is the Resources folder. Any folder named "Resources" is "copied" into the APK.

You also can take a look of other ways to reduce the file size: https://www.google.pl/search?q=reduce+apk+unity&oq=reduce+apk+unity

chelder
  • 3,819
  • 6
  • 56
  • 90