meta data for this page
📚 Native/Debug
📒 Static Function
📘 Debug.Log()
输出常规类型消息。
function Debug.Log( msg: any )
📘 Debug.LogWarning()
输出警告\提示类型消息。
function Debug.LogWarning( msg: any )
📘 Debug.LogError()
输出错误\重要类型消息。
function Debug.LogError( msg: any )
📘 Debug.Throw()
抛出异常消息并阻止后续程序,通常用于断点调试\获取代码行。
function Debug.Throw( msg: any )