Answers for "working with list in unity"

C#
17

unity list

GameObject Obj;
List<GameObject> Objects = new List<GameObject>();

Objects.Add(Obj);
Posted by: Guest on April-05-2020
5

unity list

GameObject Obj;
List<GameObject> Objects = new List<GameObject>();

Objects.Add(Obj);
Objects.remove(Obj);,
Objects.Insert(0,Obj);
Objects.RemoveAt(0);
Posted by: Guest on January-31-2021

Code answers related to "working with list in unity"

C# Answers by Framework

Browse Popular Code Answers by Language