Im trying to build a inspector interface for Enum[,].
I found this script: EditorGUIExtension
This editor script enables a nice inspector field for a array of enums.
so tried to port the function from
public static Enum EnumToolbar(Enum selected)
to
public static Enum[,] EnumArrayToolbar(Enum[,] selected)
I wrote a Debug.Log(“test”); in the new function but it does not get called.
So i try in the old (and proper working) function and the same … no sing of Debug.Log.