Ejemplo n.º 1
0
 private static void StaticOnSceneGUI(SceneView view)
 {
     if (SelectableEditor.s_ShowNavigation)
     {
         for (int i = 0; i < Selectable.allSelectables.Count; i++)
         {
             SelectableEditor.DrawNavigationForSelectable(Selectable.allSelectables[i]);
         }
     }
 }
Ejemplo n.º 2
0
 private static void StaticOnSceneGUI(SceneView view)
 {
     if (!SelectableEditor.s_ShowNavigation)
     {
         return;
     }
     for (int index = 0; index < Selectable.allSelectables.Count; ++index)
     {
         SelectableEditor.DrawNavigationForSelectable(Selectable.allSelectables[index]);
     }
 }