Beispiel #1
0
        private void RemovePlottedBounds()
        {
            //clean up previous items:
            foreach (var item in _plottedCorners)
            {
                Destroy(item.gameObject);
            }
            _plottedCorners.Clear();

            //remove lines:
            Lines.DestroyAllLines();
        }
Beispiel #2
0
 private void RemoveDebugLines()
 {
     Lines.DestroyAllLines();
 }