void OnEnable()
 {
     instance = this;
 }
 void OnDisable()
 {
     instance = null;
 }
 private static void Open()
 {
     instance = instance ?? EditorWindow.GetWindow <RaycastTargetChecker>("RaycastTargets");
     instance.Show();
 }