Application.CanStreamedLevelBeLoaded

Declaration

public static bool CanStreamedLevelBeLoaded(int levelIndex);

Description

Checks if the streamed level can be loaded.

Additional resources: GetStreamProgressForLevel function.

// Check if level at index 1 can be loaded.
// If it can be loaded then load it.
using System;
using UnityEngine;

public class SampleBehaviour : MonoBehaviour { void Start() { if (Application.CanStreamedLevelBeLoaded(1)) { Application.LoadLevel(1); } } }

Declaration

public static bool CanStreamedLevelBeLoaded(string levelName);

Description

Checks if the streamed level can be loaded.

Additional resources: GetStreamProgressForLevel function.

// Check if "Level1" can be loaded, if it can be loaded then load it.
using System;
using UnityEngine;

public class SampleBehaviour : MonoBehaviour { void Start() { if (Application.CanStreamedLevelBeLoaded("Level1")) { Application.LoadLevel("Level1"); } } }

Did you find this page useful? Please give it a rating: