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.

Application.CanStreamedLevelBeLoaded

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 CanStreamedLevelBeLoaded(levelIndex: int): bool;
public static bool CanStreamedLevelBeLoaded(int levelIndex);
public static def CanStreamedLevelBeLoaded(levelIndex as int) as bool

Description

Can the streamed level be loaded?

See Also: GetStreamProgressForLevel function.

	// Check if level at index 1 can be loaded.
	// If it can be loaded then load it.
	function Update() {
	    if (Application.CanStreamedLevelBeLoaded(1)) {
	      	Application.LoadLevel(1);
	    }
	}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void Update() {
        if (Application.CanStreamedLevelBeLoaded(1))
            Application.LoadLevel(1);
        
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def Update() as void:
		if Application.CanStreamedLevelBeLoaded(1):
			Application.LoadLevel(1)

public static function CanStreamedLevelBeLoaded(levelName: string): bool;
public static bool CanStreamedLevelBeLoaded(string levelName);
public static def CanStreamedLevelBeLoaded(levelName as string) as bool

Description

Can the streamed level be loaded?

See Also: GetStreamProgressForLevel function.

	// Check if "Level1" can be loaded, if it can be loaded then load it.
	function Update() {
	    if (Application.CanStreamedLevelBeLoaded("Level1")) {
	      	Application.LoadLevel("Level1");
	    }
	}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void Update() {
        if (Application.CanStreamedLevelBeLoaded("Level1"))
            Application.LoadLevel("Level1");
        
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def Update() as void:
		if Application.CanStreamedLevelBeLoaded('Level1'):
			Application.LoadLevel('Level1')