int getIndex(GameObject[] list, GameObject item) { for(int i=0;i<list.Length;i++) { if(list[i] == item) return i; } return -1; }