您的位置:首页 > 移动开发 > Unity3D

unity出现Ignoring menu item NGUI because it is in no submenu!

2017-11-23 12:52 1751 查看
原文:http://www.tasharen.com/forum/index.php?topic=14856.0
Hey Arenmook, after upgrading to Unity 5.4.1 (from 5.3.6p1) and upgrading to NGUI 3.10.1, Unity kept complaining on me on every recompile like this:

Quote

Ignoring menu item NGUI because it is in no submenu!
 
So I looked into it, and it turns out that this is the problem in NGUIMenu.cs Line 715+:

在Asset中的NGUI文件夹中找到NGUIMenu.cs文件,打开,把下面两句代码替换

       

        [MenuItem("NGUI/", false, 11)]

        static void Breaker () { }

 

        [MenuItem("NGUI/Help", false, 12)]

        static public void Help () { NGUIHelp.Show(); }

 

 

It can be easily fixed by removing the "Breaker" lines and increasing "Help" Priority by 10, like so:

替换为以下一句

       

        [MenuItem("NGUI/Help", false, 120)]

        static public void Help () { NGUIHelp.Show(); }

 

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐