Esempio n. 1
0
 public void sortChildren(IComparer <IEntity> pEntityComparator)
 {
     if (this.mChildren == null)
     {
         return;
     }
     ZIndexSorter.GetInstance().Sort(this.mChildren, pEntityComparator);
 }
Esempio n. 2
0
 public void sortChildren()
 {
     if (this.mChildren == null)
     {
         return;
     }
     ZIndexSorter.GetInstance().Sort(this.mChildren);
 }
Esempio n. 3
0
 /**
  * Sorts the {@link ILayer} based on their ZIndex. Sort is stable.
  */
 public void SortLayers()
 {
     ZIndexSorter.GetInstance().Sort(this.mLayers);
 }