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 /
  • Help Room /
avatar image
0
Question by mackot · Mar 16, 2016 at 02:12 PM · assetbundlewwwsave datacash

AssetBundle dont saves in cash

I create my own assetbundle's with AssetBundle manager, all works fine i can download and use them in game, but unity dont save them in cash. If dont have internet connection they dont load, though they should, becouse AssetBundle manager use LoadFromCacheOrDownload, maybe something wrong with my code?

 using UnityEngine;
 using System.Collections;
 using AssetBundles;
 using UnityEngine.UI;
 
 public class MainVariants : MonoBehaviour
 {
     public Image menuImage;
     const string variantAssetBundle = "lang";
     const string assetName = "mainmenu_ground";
 
     private string[] _activeVariants;
 
     void Awake()
     {
         _activeVariants = new string[1];
     }
 
     public void LoadAsset(string assetname)
     {
         _activeVariants[0] = assetname;
         StartCoroutine(BeginExample());
     }
 
     IEnumerator BeginExample()
     {
         if(GameObject.FindObjectOfType<AssetBundleManager>()==null)
         yield return StartCoroutine(Initialize());
 
 
         
         // Set active variants.
         AssetBundleManager.ActiveVariants = _activeVariants;
 
         yield return StartCoroutine(InstantiateImageAsync(variantAssetBundle, assetName, menuImage));
         //unload variant if in future player want change language asset
         //AssetBundleManager.UnloadAssetBundle(variantAssetBundle +"."+ _activeVariants[0]); 
     }
 
     // Initialize the downloading url and AssetBundleManifest object.
     protected IEnumerator Initialize()
     {
         // Don't destroy this gameObject as we depend on it to run the loading script.
         DontDestroyOnLoad(gameObject);
 
 #if  UNITY_EDITOR
         AssetBundleManager.SetDevelopmentAssetBundleServer();
 #else
         AssetBundleManager.SetSourceAssetBundleURL("file://C:/Users/toshiba/Desktop/UssetBundleTest/AssetBundles/");
         // Or customize the URL based on your deployment or configuration
         //AssetBundleManager.SetSourceAssetBundleURL("http://www.MyWebsite/MyAssetBundles");
         
 #endif
 
         // Initialize AssetBundleManifest which loads the AssetBundleManifest object.
         var request = AssetBundleManager.Initialize();
         if (request != null)
             yield return StartCoroutine(request);
     }
 
     protected IEnumerator InstantiateImageAsync(string assetBundleName, string assetName, Image img)
     {
         // This is simply to get the elapsed time for this phase of AssetLoading.
         float startTime = Time.realtimeSinceStartup;
 
         // Load asset from assetBundle.
         AssetBundleLoadAssetOperation request = AssetBundleManager.LoadAssetAsync(assetBundleName, assetName, typeof(Sprite));
         if (request == null)
         {
             menuText.text = "null";
             yield break;
         }
         yield return StartCoroutine(request);
 
         // Get the asset.
         Sprite spr = request.GetAsset<Sprite>();
 
         if (spr != null)
             img.sprite = spr;
 
         // Calculate and display the elapsed time.
         float elapsedTime = Time.realtimeSinceStartup - startTime;
         Debug.Log(assetName + (spr == null ? " was not" : " was") + " loaded successfully in " + elapsedTime + " seconds");
     }
 }
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

50 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 avatar image avatar image avatar image

Related Questions

using Asset Bundles to reduce my WebGl build size 0 Answers

Finding audio clips in a specific folder if it is exist (Android) 0 Answers

Not possible to cache assetbundles behind server authentication? 0 Answers

Using Asset Bundle on Web Server for image sequence animation 0 Answers

AssetBundle LoadAsset and LoadAssetAsync causes brief lag or frame loss 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