Inspector Titlebar for class derived from Object

Currently I have a class named Node. Node derives from ScriptableObject (which derives from Object).

In a custom editor (for a different script), I wish to loop through a list of Node instances, displaying the details of each under their own InspectorTitlebar.

So quite simply the code:

EditorGUILayout.InspectorTitlebar(true, nodeList.nodes*);*

I would think would display a titlebar that has an icon assosciated with Node.cs and text that says ‘Node’.
But no, the icon is a generic unity icon, and the text says “Mono Behaviour” (which is stupid not only because I can’t seem to modify it, but because Node isn’t even a Mono Behaviour).
![alt text][1]
So my question is, how can I set the icon for this, and how could I change the text?
[1]: http://i.imgur.com/yZ98yU0.png

For the icon, if you create an icon in Assets/Gizmos with the name “ClassName icon.png” (apparently tif also works) then it should show that icon when you call InspectorTitlebar. So for your class called Node the file would be “Node icon.png”.

For the name, digging in to the InspectorTitlebar method with ILDasm it looks like it calls ObjectNames.GetInspectorTitle which will return “Scriptname (Script)” if the object is a script so the only way to override that is to change the name of your script (also I think the script name needs to match the file name even if it doesn’t derive from MonoBehaviour).

I have had no luck getting any other UnityEngine.Object-derived type into InspectorTitlebar. I can’t seem to new objects that are derived directly from UnityEngine.Object.