unity-编辑器快捷按键
Posted jaysonhome
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unity-编辑器快捷按键相关的知识,希望对你有一定的参考价值。
-
效果图
-
代码
[MenuItem("Custom/Run _F1")]
static void PlayToggle()
{
EditorApplication.isPlaying = !EditorApplication.isPlaying;
}
static MethodInfo clearMethod = null;
[MenuItem("Custom/Clear Console %#z")]
private static void ClearConsole()
{
if (clearMethod == null)
{
Type log = typeof(EditorWindow).Assembly.GetType("UnityEditor.LogEntries");
clearMethod = log.GetMethod("Clear");
}
clearMethod.Invoke(null, null);
}
以上是关于unity-编辑器快捷按键的主要内容,如果未能解决你的问题,请参考以下文章