↧
Answer by ZGTR
Easily done using Linq: using System.Linq; GameObject temp = list.Where(obj => obj.name == "Sword").SingleOrDefault(); This will return your game object if found. Otherwise, null. You have to import...
View Article