Implement this function to make a custom inspector.
//Creates a custom Label on the inspector for all the scripts named ScriptName // Make sure you have a ScriptName script in your // project, else this will not work. @CustomEditor(ScriptName) class TestOnInspector extends Editor { override function OnInspectorGUI () { GUILayout.Label ("This is a Label in a Custom Editor"); } }