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

public static function CreateFromMemoryImmediate(binary: byte[]): 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);
}