binary | Array of bytes with the AssetBundle data. |
Synchronously create an AssetBundle from a memory region.
Use this method to create an AssetBundle from an array of bytes. This is useful when you want to download the AssetBundle using your own system instead of the WWW class, or when you have downloaded the data with encryption and need to create the AssetBundle from the unencrypted bytes.
Compared to AssetBundle.CreateFromMemory, this version is synchronous and will not return until it is done creating the AssetBundle object.
See Also: AssetBundleCreateRequest, AssetBundle.CreateFromMemory.
function Start () { var www = WWW ("http://myserver/myBundle.unity3d"); yield www; var assetBundle = AssetBundle.CreateFromMemoryImmediate (www.bytes); }
IEnumerator Start () { WWW www = new WWW("http://myserver/myBundle.unity3d"); yield return www; AssetBundle assetBundle = AssetBundle.CreateFromMemoryImmediate(www.bytes); }