What might be causing this?
public class SomeDrawer : Editor {
void OnSceneGUI()
{
Debug.Log("Update");
}
}
I don’t get that update message at all.
What might be causing this?
public class SomeDrawer : Editor {
void OnSceneGUI()
{
Debug.Log("Update");
}
}
I don’t get that update message at all.
Appearently, I forgot to add [CustomEditor(typeof(SomeType))] property.