インスペクター上でクリックするように、ウィンドウ内のオブジェクトを Ping します。
// Pings the currently selected Object @MenuItem("Examples/Ping Selected") static function Ping() { if(!Selection.activeObject) { Debug.LogError("Select an object to ping"); return; } EditorGUIUtility.PingObject(Selection.activeObject); }