报告该开发控制台是否可见。无法使用以下方式显示该开发控制台:
using UnityEngine;
public class OpenDevConsoleScript : MonoBehaviour
{
void Start()
{
Debug.developerConsoleVisible = true;
}
}
因为在已记录了错误后,开发控制台将自动显示。例如:
using UnityEngine;
public class LogErrorScript : MonoBehaviour
{
void Start()
{
Debug.LogError("I am an Error");
}
}
但在打开了该开发控制台后,您可以使用以下方式将其关闭:
using UnityEngine;
public class CloseDevConsoleScript : MonoBehaviour
{
void Start()
{
Debug.developerConsoleVisible = false;
}
}