public void SortCompResetToOriginal()
 {
     currParent = transform.parent = origParent;
     LayerSortComp.LayerReset();
     SendChangeToTracker();
 }
 public void SortCompResetToBase(Transform newBaseParent)
 {
     currParent = baseParent = transform.parent = newBaseParent;
     LayerSortComp.LayerReset();
     SendChangeToTracker();
 }
 public void SortCompLayerReset()
 {
     LayerSortComp.LayerReset();
     SendChangeToTracker();
 }