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-编辑器快捷按键的主要内容,如果未能解决你的问题,请参考以下文章

VS Code配置markdown代码片段

VS Code配置markdown代码片段

;~ 小部分AutoHotkey源代码片段测试模板2019年10月9日.ahk

小功能⭐️Unity快捷键路径及常用特性

unity 通过按键(鼠标左键)生成一个物体 用C#怎么写

Unity编程Unity动画系统