Application.CanStreamedLevelBeLoaded 流关卡被加载

static function CanStreamedLevelBeLoaded (levelIndex : int) : bool

Description描述

Can the streamed level be loaded?

能流模式加载的关卡是否被加载?

参见: GetStreamProgressForLevel 函数.

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Update() {
		if (Application.CanStreamedLevelBeLoaded(1))
			Application.LoadLevel(1);

	}
}
// Check if level at index 1 can be loaded.
// If it can be loaded then load it.
//检查如果索引为1的关卡可以被加载
//如果能被加载就加载它
function Update() {
	if (Application.CanStreamedLevelBeLoaded(1)) {
		Application.LoadLevel(1);
	}
}

• static function CanStreamedLevelBeLoaded (levelName : string) : bool

Description描述

Can the streamed level be loaded?

能流模式加载的关卡是否被加载?

参见: GetStreamProgressForLevel 函数.

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void Update() {
		if (Application.CanStreamedLevelBeLoaded("Level1"))
			Application.LoadLevel("Level1");

	}
}
// Check if "Level1" can be loaded, if it can be loaded then load it.
//检查如果Level1可以加载,如果能加载就加载它
function Update() {
	if (Application.CanStreamedLevelBeLoaded("Level1")) {
		Application.LoadLevel("Level1");
	}
}
最后修改:2010年12月15日 Wednesday 15:01

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。