Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by nhimmisha · Dec 03, 2014 at 09:36 AM · wwwcacheloadfromcacheordownloadonapplicationquit

Quit application while downloading with www.loadfromcacheordownload makes application crash

First, I have successfully downloaded assets bundles with this function

 using (WWW www = WWW.LoadFromCacheOrDownload(GetUrlFromServer(url), version))
             {
                 // Progress slider
                 GameObject loader = new GameObject();
                 loader.name = "TempAssetBundleLoader";
                 loader.tag = "bundleloader";
                 AssetBundleSlider assetBundleSlider = loader.AddComponent<AssetBundleSlider>();
                 assetBundleSlider.www = www;
 
                 if (_isSlideOn)
                     assetBundleSlider.CreateSlider();

                 yield return www;

                 if (www.error != null)
                     throw new System.Exception("WWW download:" + www.error);
                 Debug.Log("Downloaded bundle");
            }

AssetBundleSlider presents download progress like this:

 void Update()
     {
         if (www != null && !www.isDone && downloadSlider != null)
         {
             int percent = (int)(www.progress * 100);
             
             Debug.Log(percent + " %");
         }
         if (www.progress == 1)
         {
             Destroy(gameObject);
             Destroy(downloadSlider);
         }
     }

When downloading is happening, i try to interrupt it:

  • When I quit application on ios and go back, app freezes.

  • When I quit application on editor, it prompts "Moving file failed" message. I try to call www.Dispose() on AssetBundleSlider but it makes my editor crashes:

        void OnApplicationQuit()
         {
             if (www != null && !www.isDone)
             {
                 www.Dispose();
                 www = null;
                 System.GC.Collect();
             }
         }
    
    

How can I manage to stop downloading and release downloading caches on application quit?

Comment
Add comment · Show 5
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image SaraCecilia · Dec 03, 2014 at 09:38 AM 0
Share

Any of these similar threads help?

http://answers.unity3d.com/questions/23071/preloading-asset-bundles-by-unloading-them-after-d.html

http://answers.unity3d.com/questions/35231/loading-webplayer-builds-via-wwwloadfromcacheordow.html

avatar image nhimmisha · Dec 03, 2014 at 09:59 AM 0
Share

I'm afraid those are not similar. I want to force app to quit (by stop play mode on editor or close app on ios) while downloading asset bundles (interrupting download process), start app again, start download again without making any error.

avatar image unimechanic ♦♦ · Dec 03, 2014 at 03:43 PM 0
Share

When the app quits, the download will stop. You can clean the AssetBundles cache with this:

http://docs.unity3d.com/ScriptReference/Caching.CleanCache.html

When I quit application on ios and go back, app freezes.

That's strange, not sure whether it's caused by your app corrupting something, or a Unity bug.

avatar image nhimmisha · Dec 04, 2014 at 03:00 AM 0
Share

@unimechanic CleanCache will clean all my caches. That is not what I should do. Will the asset is caching while downloading? And when I start app back, it loads this broken asset? This runs fine on Android. Not sure what happen on iOS caching system.

avatar image DeveshPandey · Oct 16, 2017 at 05:13 PM 0
Share

Here is very good plugin to download files in GBs without any crashing specially on iOS. https://assetstore.unity.com/packages/tools/network/large-file-downloader-cross-platform-92128

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

LoadFromCacheOrDownload is sensibly slower than WWW, why? 1 Answer

Loading Webplayer builds via WWW.LoadFromCacheOrDownload 3 Answers

Web player cache 1 Answer

How to run Android service behind UnityPlayerActivity? 0 Answers

LoadFromCacheOrDownload Version Variable Reset? 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges