码迷,mamicode.com
首页 > 编程语言 > 详细

unity-编辑器快捷按键

时间:2020-07-12 14:22:45      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:ogg   arm   win   arc   编辑   技术   unit   play   图片   

  • 效果图
    技术图片

  • 代码

    [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-编辑器快捷按键

标签:ogg   arm   win   arc   编辑   技术   unit   play   图片   

原文地址:https://www.cnblogs.com/Jaysonhome/p/13288162.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!