Exemplo n.º 1
0
 public void UnBind(UICameraSorting sorting)
 {
     for (int i = 0; i < _sortingList.Count; i++)
     {
         if (_sortingList[i] == sorting)
         {
             _sortingList.RemoveAt(i);
             break;
         }
     }
 }
Exemplo n.º 2
0
 public void Bind(UICameraSorting sorting)
 {
     _sortingList.Add(sorting);
 }