Answers for "why list is used in unity"

C#
16

unity list

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

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

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

C# Answers by Framework

Browse Popular Code Answers by Language