中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

[Unity3D]AssetBundles的使用

發布時間:2020-06-19 00:34:08 來源:網絡 閱讀:354 作者:蓬萊仙羽 欄目:游戲開發

 一共有兩種方法下載AssetBundles數據資源:

  1. 無緩存:這種方法使用將創建一個WWW類,下載完的數據無法在本地unity3d的緩存目錄中進行保存。

  2. 有緩存:使用WWW.LoadFromCacheOrDownload的方法,下載完的數據將在unity3d的本地緩存目錄中進行保存。Web瀏覽器通常允許緩存大小達到50MB,PC和MAC的本地應用,IOS和Android應用都允許緩存達到4GB大小。

   下面是不含緩存的代碼:

using System;

using UnityEngine;

using System.Collections; class NonCachingLoadExample : MonoBehaviour {

  public string BundleURL;

  public string AssetName;

  IEnumerator Start() {

  // Download the file from the URL. It will not be saved in the Cache

  using (WWW www = new WWW(BundleURL)) {

  yield return www;

  if (www.error != null)

  throw new Exception("WWW download had an error:" + www.error);

  AssetBundle bundle = www.assetBundle;

  if (AssetName == "")

  Instantiate(bundle.mainAsset);

  else

  Instantiate(bundle.Load(AssetName));

                  // Unload the AssetBundles compressed contents to conserve memory

                  bundle.Unload(false);

  }

  }

}

   下面是含緩存的代碼,系統建議利用WWW.LoadFromCacheOrDownload類進行下載:

using System;

using UnityEngine;

using System.Collections;

 

public class CachingLoadExample : MonoBehaviour {

public string BundleURL;

public string AssetName;

public int version;

 

void Start() {

StartCoroutine (DownloadAndCache());

}

 

IEnumerator DownloadAndCache (){

// Wait for the Caching system to be ready

while (!Caching.ready)

yield return null;

 

// Load the AssetBundle file from Cache if it exists with the same version or download and store it in the cache

using(WWW www = WWW.LoadFromCacheOrDownload (BundleURL, version)){

yield return www;

if (www.error != null)

throw new Exception("WWW download had an error:" + www.error);

AssetBundle bundle = www.assetBundle;

if (AssetName == "")

Instantiate(bundle.mainAsset);

else

Instantiate(bundle.Load(AssetName));

               // Unload the AssetBundles compressed contents to conserve memory

               bundle.Unload(false);

}

}

}

   這樣,下載之前系統會現在緩存目錄中查找, WWW.LoadFromCacheOrDownload函數的第二個參數表示版本號,當要下載的數據在緩存目錄中不存在,或者存在,但版本號比較低時,系統才會下載新的數據資源,并替換到緩存中的原數據資源。

   現在來完成上一篇中的實例,在項目視圖(Projection View)中,建立Script目錄,利用上面的兩段源代碼,分別創建名為CachingLoadExample和NonCachingLoadExample的C#腳本,如下圖所示:

[Unity3D]AssetBundles的使用

   在unity3d編輯器中創建空物體,菜單GameObject - CreateEmpty,把CachingLoadExample腳本拖動到GameObject上。在層級視圖中(Hierarchy View)選中GameObject,在右邊的監視視圖(Inspector View)中,把CachingLoadExample腳本的BundleURL變量值指定到Cube.unity3d文件所在位置(輸入絕對路徑,需根據自己存放的目錄手動修改),例如:file://C:/UnityProjects/AssetBundlesGuide/Assets/AssetBundles/Cube.unity3d,現在運行unity3d,就能夠實現動態加載Cube物體了。

   實例文件下載地址:http://download.csdn.net/detail/s10141303/6496017

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

广平县| 崇文区| 岳阳市| 永登县| 江阴市| 黄浦区| 镇雄县| 兴化市| 福建省| 民和| 灵武市| 海宁市| 来安县| 眉山市| 武川县| 大田县| 金乡县| 府谷县| 唐山市| 阿巴嘎旗| 延寿县| 云霄县| 灵璧县| 三门峡市| 百色市| 平塘县| 禄丰县| 北碚区| 蒲江县| 沛县| 延川县| 长顺县| 昌乐县| 丽水市| 邯郸县| 潼南县| 苍梧县| 通道| 海门市| 凤山县| 台东县|