ストリーム用のレベルが読み込めるかどうか
関連項目: GetStreamProgressForLevel 関数 .
// 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); } } }
ストリーム用のレベルが読み込めるかどうか
関連項目: GetStreamProgressForLevel 関数 .
// 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"); } } }