message | 要转换为字符串表示形式以显示的字符串或对象。 |
context | 消息适用的对象。 |
Debug.Log 的一个变体,它将警告消息记录到控制台。
当您在控制台中选择消息时,将绘制到上下文对象的连接。如果您想知道警告发生在哪个对象上,这非常有用。
当消息为字符串时,可以使用富文本标记添加强调。有关可用不同标记的详细信息,请参阅有关富文本的手册页面。
其他资源:Debug.unityLogger、ILogger、Logger.LogWarning。
using UnityEngine; using System.Collections;
public class MyGameClass : MonoBehaviour { private Transform transform;
void MyGameMethod() { if (transform == null) Debug.LogWarning("A warning assigned to this transform!", transform); } }