Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 Khozo · Apr 15, 2016 at 11:08 AM · assetbundlewwwvuforia

WWW Class does not work on IOS (But it works in the editor)

I'm trying to download an Asset Bundle through a link online, in the Unity Editor it works perfectly, it'll download the bundle and put it into the scene, although when I build the project and put it onto my iPhone, it'll download the model but it doesn't instantiate it.

 IEnumerator down() {
         
         print ("Start Download");
 
         //Download from URL
         var www = WWW.LoadFromCacheOrDownload(BundleURL,4);
 
         //While the bundle is downloading...
         while (!www.isDone) {
 
             //Show percentage of download complete
             tex = ((Mathf.Round(www.progress*100)).ToString())+"%";
             if(tex == "0%") {
                 tex = "Loading...";
             }
             text.GetComponent<Text>().text = tex;
             text2.GetComponent<Text>().text = tex;
             text3.GetComponent<Text>().text = tex;
             text4.GetComponent<Text>().text = tex;
             text5.GetComponent<Text>().text = tex;
             yield return 0;
         }
 
         //If Download failed, produce error
             if (www.error != null)
                 throw new Exception ("WWW download had an error:" + www.error);
         
         //Else if download successful, Instantiate it.
             AssetBundle bundle = www.assetBundle;
             if (AssetName == "")
                 tank = Instantiate (bundle.mainAsset) as GameObject;
             else
                 tank = Instantiate (bundle.LoadAsset (AssetName)) as GameObject;
 
             bundle.Unload(false);
 
         //Interact with other GameObjects and tank's transform.
             newobj.GetComponent<ContentManager> ().AugmentationObject = tank;
         tank.transform.parent = obj.transform;
         tank.transform.localScale = new Vector3 (1, 1, 1);
 
             print ("Finished!!");
 
         //Run TextFinished Code
         StartCoroutine(    TextFinished ());
     }

This is the code I'm using, on mobile the download percentage will hit 100% and nothing else will happen. Then if I try to download it a second time it'll be stuck on 0% almost like it's trying to grab it from the cache.

For extra information, I'm using Vuforia's Cloud Recognition to download an asset based on the image it's viewing.

Comment
Add comment · Show 2
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 antx · Apr 15, 2016 at 12:13 PM 0
Share

one thing:

yield return 0; should be yield return null;

another thing:

text.GetComponent().text = tex; ... I would cache those components before the while loop. Perhaps even in the Start() function of your script. If you use them only as Text, then declare them already as such like:

public Text text;

avatar image Khozo antx · Apr 15, 2016 at 12:21 PM 0
Share

I found out what was wrong, Thanks for the advice though, it'll help!

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by Khozo · Apr 15, 2016 at 12:23 PM

The reason it didn't load is not because of the code, but the Asset Bundle itself, I built Windows/Mac versions of the Asset Bundles and not the IOS versions, I needed to build IOS versions of the Asset Bundles to make it instantiate on the IOS device.

Comment
Add comment · Share
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

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

47 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

3D model is not loading from url 1 Answer

NullReferenceException: Object reference not set to an instance of an object SimpleCloudHandler+c__Iterator4.MoveNext () 0 Answers

How to use same material? 0 Answers

Loading AssetBundles from inside the Project 1 Answer

AssetBundle, problem whit the version 0 Answers


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