- Home /
Change default Unity Editor Menu Items
I want to either move or disable the "Asset Store" menu item in "Window/Asset Store" in the Unity Editor.
It takes forever to load and is right next to Asset Server.
is this possible / anyone know how?
Answer by Createman · Apr 20, 2013 at 03:01 PM
You can overwrite it with your own editor class by adding a menu item, and then disabling it:
using UnityEditor;
public class DisableUnityMenuItems : Editor {
[MenuItem ("Window/Asset Store %9")]
static void AssetStoreMenu () {
}
[MenuItem ("Window/Asset Store %9", true)]
static bool ValidateAssetStoreMenu () {
return false;
}
}
Works at least in Unity Pro 4.1
Answer by Landern · Mar 12, 2013 at 08:23 PM
I just went through (on windows) the registry and folder, other then tooltip and whatnot, the base menu functions seem to be hard coded. Sorry.
As a suggestion, try using the Hot key instead of clicking up there, you may have a more success with the hardware key, they software menu item.
ya I was looking into the DLLs trying to maybe break the connections there to no avail, thanks for looking though
Your answer