Debug.LogWarning 记录警告

static function LogWarning (message : object) : void

Description描述

A variant of Debug.Log that logs a warning message to the console.

Debug.Log的一个变体,是用来记录一个警告消息到控制台。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		Debug.LogWarning("Watch out!, this is a warning!");
	}
}
Debug.LogWarning("Watch out!, this is a warning!");

• static function LogWarning (message : object, context : Object) : void

Description描述

A variant of Debug.Log that logs a warning message to the console.

Debug.Log的一个变体,是用来记录一个警告消息到控制台。

When you select the message in the console a connection to the context object will be drawn. This is very useful if you want know on which object a warning occurs.

当你在看控制台选择消息的时候,到上下文物体的一个连接将被绘制。如果你想知道在那个对象上发生了警告,这是非常有用的。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		Debug.LogWarning("A warning assigned to this transform!", transform);
	}
}
Debug.LogWarning("A warning assigned to this transform!", transform);
最后修改:2010年12月24日 Friday 22:12

本脚本参考基于Unity 3.4.1f5

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