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 ycyipman · Oct 22, 2015 at 08:15 AM · unity 5assetbundle

Build assetbundle successfully but cannot instantiate it

My unity is 5.2.0.I have built assetbundle using a simple cube and the size of the file is 45KB. And when I download it with WWW class, the www.error message shows nothing. But when I instantiate the cube, unity tells me the result is null. I assume there's something wrong in the building progress but I cannot find the reason.

SelectAsset is all the assets I selected in Project panel. I get their path one by one and put it into resourcesAssets.

 for (int i = 0; i < SelectedAsset.Length; i++)
 {
     sourcePath = AssetDatabase.GetAssetPath(SelectedAsset[i]);
     resoucesAssets[i] = sourcePath;
 }

After that, I use BuildAssetBundles to build assetbundle. Do I have to use AssetBundleBuild in this condition?

 BuildPipeline.BuildAssetBundles(targetPath);

Here is my downloading code. I download manifest file first, and www.error shows nothing. It's correct.

 WWW www = WWW.LoadFromCacheOrDownload(mainUrl, 0);
 yield return www;
 
 AssetBundleManifest manifest = new AssetBundleManifest();
 
 if (!string.IsNullOrEmpty(www.error))
 {
     print(www.error);
 }
 else
 {
     AssetBundle manifestBundle = www.assetBundle;
     manifest = manifestBundle.LoadAsset("AssetBundleManifest") as AssetBundleManifest;
     manifestBundle.Unload(false);
 }

Then I download the assetbundle file with cube. In this case, wwwGoal.error shows nothing as well, but "Instantiate(goal);" tells me the result is null.

 WWW wwwGoal = WWW.LoadFromCacheOrDownload(path + realName + extension, manifest.GetAssetBundleHash(realName + extension), 0);
 yield return wwwGoal;
 if (!string.IsNullOrEmpty(wwwGoal.error))
 {
     print(wwwGoal.error);
 }
 else
 {
     AssetBundle ab = wwwGoal.assetBundle;
     GameObject goal = ab.LoadAsset(realName + extension) as GameObject;
     if (goal != null)
     {
         Instantiate(goal);
         ab.Unload(false);
     }
 }

The size of the assetbundle file is 45KB. It's right in normal cases. I have confused about this for several days. Could anyone tell me the reason?

Thanks!

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Unity5 upgrade invalid serialized file version 0 Answers

Asset Bundle load locally 1 Answer

How to set static size all game object? 0 Answers

Loading prefabs with script references from assetbundle 0 Answers

Loading GameObject with the Script Attached from the AssetBundle. 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