版本: Unity 6 (6000.0)
语言英语
  • C#

HideInCallstackAttribute

UnityEngine 中的类

/

实现于: UnityEngine.CoreModule

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。尽管我们无法接受所有提交,但我们确实会阅读用户提出的每项更改建议,并在适当情况下进行更新。

关闭

提交失败

由于某种原因,您的更改建议无法提交。请<a>稍后再试</a>。感谢您花时间帮助我们提高 Unity 文档的质量。

关闭

取消

描述

标记您希望从控制台窗口调用堆栈中隐藏的方法。当您隐藏这些方法时,它们将从控制台窗口中所选消息的详细信息区域中删除。

要隐藏标记的方法,请单击控制台菜单按钮,然后从菜单中选择Strip logging callstack

using UnityEngine;

public class HideInCallstackExample : MonoBehaviour { void Start() { HiddenDebug("[HideInCallstack] Debug message here."); VisibleDebug("Debug message here."); }

// Hidden in the detail area of the message in the console window. [HideInCallstack] public static void HiddenDebug(object logMsg) { Debug.Log(logMsg); }

// Visible in the detail area of the message in the console window. public static void VisibleDebug(string logMsg) { Debug.Log(logMsg); } }