So I know you can select multiple objects in the hierachy.
Selection.gameObjects();
And I know how to highlight one object.
EditorGUIUtility.PingObject(j.gameObject);
But how do I highlight multiple objects?
I tried to loop through an array but it only highlighted the last object in it.
If Unity can multi-select, I would think it would be able to multi-highlight as it is using the same styling in the hierarchy...