public void DrawBoxSelection()
 {
     if (boxSelecting)
     {
         Rect r = new Rect(selectionBox);
         SF_Tools.FlipNegative(ref r);
         GUI.Box(r, string.Empty, SF_Styles.SelectionStyle);
         //GUI.Label(r,selectionBox.ToString().Replace(' ','\n'));
     }
 }