Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

Obsolete
BuildStreamedSceneAssetBundle has been made obsolete. Please use the new AssetBundle build system introduced in 5.0 and check BuildAssetBundles documentation for details.

BuildPipeline.BuildStreamedSceneAssetBundle

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static function BuildStreamedSceneAssetBundle(levels: string[], locationPath: string, target: BuildTarget): string;
public static string BuildStreamedSceneAssetBundle(string[] levels, string locationPath, BuildTarget target);
public static function BuildStreamedSceneAssetBundle(levels: string[], locationPath: string, target: BuildTarget, out crc: uint): string;
public static string BuildStreamedSceneAssetBundle(string[] levels, string locationPath, BuildTarget target, out uint crc);
public static function BuildStreamedSceneAssetBundle(levels: string[], locationPath: string, target: BuildTarget, options: BuildOptions): string;
public static string BuildStreamedSceneAssetBundle(string[] levels, string locationPath, BuildTarget target, BuildOptions options);
public static function BuildStreamedSceneAssetBundle(levels: string[], locationPath: string, target: BuildTarget, out crc: uint, options: BuildOptions): string;
public static string BuildStreamedSceneAssetBundle(string[] levels, string locationPath, BuildTarget target, out uint crc, BuildOptions options);

Parámetros

levels Pathnames of levels to include in the asset bundle.
locationPath Pathname for the output asset bundle.
target Runtime platform on which the asset bundle will be used.
crc Output parameter to receive CRC checksum of generated assetbundle.
options Build options. See BuildOptions for possible values.

Valor de retorno

string String with an error message, empty on success.

Descripción

Builds one or more scenes and all their dependencies into a compressed asset bundle.

The scene AssetBundle can be built for any target platform and always creates a single compressed unity3d file.

The scene can be downloaded and loaded using the WWW class. You can use WWW.LoadFromCacheOrDownload to cache the downloaded scene after it has been downloaded. The optional crc output parameter can be used to get a CRC checksum for the generated AssetBundle, which can be used to verify content when downloading AssetBundles using WWW.LoadFromCacheOrDownload.

	// Build a streamed unity3d file. This contain one scene that can be downloaded
	// on demand and loaded once its asset bundle has been loaded.

@MenuItem ("Build/BuildWebplayerStreamed") static function MyBuild(){ var levels : String[] = ["Assets/Level1.unity"]; BuildPipeline.BuildStreamedSceneAssetBundle( levels, "Streamed-Level1.unity3d", BuildTarget.WebPlayer); }
using UnityEngine;
using UnityEditor;
using System.Collections;

public class StreamedSceneLoaderExample : MonoBehaviour {

// Build a streamed unity3d file. This contain one scene that can be downloaded // on demand and loaded once its asset bundle has been loaded.

[MenuItem ("Build/BuildWebplayerStreamed")] public static void MyBuild(){ string[] levels = new string[] {"Assets/Level1.unity"}; BuildPipeline.BuildStreamedSceneAssetBundle( levels, "Streamed-Level1.unity3d", BuildTarget.WebPlayer); } }

When downloading the built compressed file, you need to call WWW.assetBundle in order to make the scene available to the Application.LoadLevel() and Application.LoadLevelAdditive() functions.

	function Start () {
		// Download compressed scene. If version 5 of the file named "Streamed-Level1.unity3d" was previously downloaded and cached.
		// Then Unity will completely skip the download and load the decompressed scene directly from disk.
		var download = WWW.LoadFromCacheOrDownload ("http://myWebSite.com/Streamed-Level1.unity3d", 5);
		yield download;
		
		// Handle error
		if (download.error != null)
		{
			Debug.LogError(download.error);
			return;
		}
		
		// In order to make the scene available from LoadLevel, we have to load the asset bundle.
		// The AssetBundle class also lets you force unload all assets and file storage once it is no longer needed.
		var bundle = download.assetBundle;
		
		// Load the level we have just downloaded
		Application.LoadLevel ("Level1");
	}
using UnityEngine;
using System.Collections;

public class StreamedSceneLoaderExample : MonoBehaviour {

IEnumerator Start () { // Download compressed scene. If version 5 of the file named "Streamed-Level1.unity3d" was previously downloaded and cached. // Then Unity will completely skip the download and load the decompressed scene directly from disk. var download = WWW.LoadFromCacheOrDownload ("http://myWebSite.com/Streamed-Level1.unity3d", 5); yield return download; // Handle error if (download.error != null) { Debug.LogError(download.error); yield break; } // In order to make the scene available from LoadLevel, we have to load the asset bundle. // The AssetBundle class also lets you force unload all assets and file storage once it is no longer needed. var bundle = download.assetBundle; // Load the level we have just downloaded Application.LoadLevel ("Level1"); } }