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:
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+:
[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, 22)]
static public void Help () { NGUIHelp.Show(); }
Then Unity shuts up
