Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
2 captures
13 Jun 22 - 14 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 karthees · Sep 08, 2014 at 09:33 AM · gameobjectassetbundlewwwvuforia

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

I'm doing vuforia + unity app. I have 3D model in server url then parsing the url loading to app. I'm using AssetBundle and www format to display the 3D model from url.

 // Here we handle a cloud target recognition event
 public void OnNewSearchResult(TargetFinder.TargetSearchResult targetSearchResult) {
     // do something with the target metadata
     mTargetMetadata = targetSearchResult.MetaData;
          
         JSONObject json = JSONObject.Parse(mTargetMetadata);
         
         string type=json.GetString("type");
          url=json.GetString("overlay3d");
         
         
     // stop the target finder (i.e. stop scanning the cloud)
     mCloudRecoBehaviour.CloudRecoEnabled = false;
         
         mShowGUIButton = true;
     
         
           GameObject newImageTarget = Instantiate(ImageTargetTemplate.gameObject) as GameObject;
          
         GameObject augmentation = null;
  
         if( augmentation != null )
             augmentation.transform.parent = newImageTarget.transform;
  
         // enable the new result with the same ImageTargetBehaviour:
       //  ImageTargetBehaviour imageTargetBehaviour = mImageTracker.TargetFinder.EnableTracking(targetSearchResult, newImageTarget);
          
 //StartCoroutine(GetAssetBundle());
  
         Debug.Log("Metadata value is " + url );
         StartCoroutine(GetAssetBundle());
         
         
         
         // Build augmentation based on target
 if (ImageTargetTemplate) {
     // enable the new result with the same ImageTargetBehaviour:
     ImageTracker tracker = TrackerManager.Instance.GetTracker<ImageTracker>();
     ImageTargetBehaviour imageTargetBehaviour = 
         (ImageTargetBehaviour)tracker.TargetFinder.EnableTracking(
             targetSearchResult, ImageTargetTemplate.gameObject);
 }
         
         /*
      // str=modelName;
  using (WWW www = new WWW(url)) {
   
      AssetBundle bundle = www.assetBundle;
  g=Instantiate(bundle.mainAsset,new Vector3(0,0,0),Quaternion.identity) as GameObject;
   g.transform.localScale=new Vector3(0.136500f,0.136500f,0.136500f);
 } 
           */
 
          
          GUI.Label(new Rect(10, 10, 300, 70), "Path: " + url);
         
          if (GUI.Button(new Rect(100,300,200,50), "Path: " + url)) {
             // Restart TargetFinder
             mCloudRecoBehaviour.CloudRecoEnabled = true;
         }
         
 }
     
     
   IEnumerator GetAssetBundle ()
 {
  
 www = new WWW(url);
 yield return www;
 Debug.Log("The last BundleURL " + BundleURL );
  
 AssetBundleRequest request = www.assetBundle.LoadAsync("modelipad", typeof(GameObject));
 yield return request;
  
 Instantiate(request.asset, new Vector3(0f, 0f, 0f), Quaternion.identity);
  
 //Put the stream model under the image target
 GameObject ImageTargetUsed = GameObject.Find("ImageTarget");
          GameObject ModelIpadClone = GameObject.Find("modelipad(Clone)");
          ModelIpadClone.transform.parent = ImageTargetUsed.transform;
  
 }
Comment
Add comment
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

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

22 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

Related Questions

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

3D model is not loading from url 1 Answer

Display 3D from url 0 Answers

Loading AssetBundles from inside the Project 1 Answer

Download assetBundle from server 2 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