New ustom Editor tools, Awesome ! But I need more

Hello !

your new tools are awesome ! but I need more:
Here I have created 2 customs tools, your basic Platform global tool,

  • and the Vertex Tool [EditorTool(“Show Vertices”, typeof(MeshFilter))]

But Why my global tools are only accessible with a right click at the top ?

I would like something like this:


Aslo: If i have a black png, with transparent background, it doen’t turn white when I focus it, like the other…

More:

How about showing for specific tools an GUI.Window draggable, with stuff to draw in it ?

Hi guys, again.
I have tryed to call a GUI.Window from the OnToolGUI, But it doesn’t end up well :')

the code:

 public override void OnToolGUI(EditorWindow window)
    {
        window.BeginWindows();
        windowRect = GUILayout.Window(300, windowRect, HereWindow, "Hi There");
        window.EndWindows();
}

I have tryed to add some BeginChangeCheck, but nothing work.