Not Showing Tools Option in Unity Editor

Hey Guys! I’m using unity 4.5.2. and I don’t whether it should be there or not, but I’m not seeing the tools option in the menu bar of the Editor. I’ve seen many youtube videos and they have that tools option along side MENU, EDIT and all that. Is there another way I can access it or it is something else.

Cheers!

You add this to your editor scripts. It’s not there by default.

using UnityEditor;

public static class MenuItems
{
    [MenuItem("Tools/YourTool/DoStuff")]
    public static void Stuff()
    {
        // ...
    }
}

I think it is now the standard for 3rd party tools to put their stuff inside so that the editor won’t get cluttered with menus. I got a rejection recently for one of my assets partially because of that.

May be i am too late for this but for other who are facing this kind of issue,
i had the same issue,i resolved it by as follows
1)First of all find Editor folder in Project tab,and look if the script is present there,i had script there and when i opened that script it was started with if “Unity_5”,but as i am using unity 2017,so i commented that condition and tools option is present in top bar,

@KingKong320 @vexe probably too late to get any replies, but could anyone explain to me how to do this?? I’m a complete beginner to unity and using code/scripts so not sure which editor folder to use and how to put the scripts in? thanks :slight_smile: