Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

AssetBundle.CreateFromMemoryImmediate

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static function CreateFromMemoryImmediate(binary: byte[]): AssetBundle;
public static AssetBundle CreateFromMemoryImmediate(byte[] binary);
public static def CreateFromMemoryImmediate(binary as byte[]) as AssetBundle

Parameters

binary Array of bytes with the AssetBundle data.

Description

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);
}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    IEnumerator Start() {
        WWW www = new WWW("http://myserver/myBundle.unity3d");
        yield return www;
        AssetBundle assetBundle = AssetBundle.CreateFromMemoryImmediate(www.bytes);
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def Start() as IEnumerator:
		www as WWW = WWW('http://myserver/myBundle.unity3d')
		yield www
		assetBundle as AssetBundle = AssetBundle.CreateFromMemoryImmediate(www.bytes)