Answers for "how to create a public list unity"

C#
13

how to create a public list unity

void Start () 
    {
        //This is how you create a list. Notice how the type
        //is specified in the angle brackets (< >).
        public List<BadGuy> badguys = new List<BadGuy>();

        //Here you add 3 BadGuys to the List
        badguys.Add( new BadGuy("Harvey", 50));
        badguys.Add( new BadGuy("Magneto", 100));
        badguys.Add( new BadGuy("Pip", 5));

        badguys.Sort();

        foreach(BadGuy guy in badguys)
        {
            print (guy.name + " " + guy.power);
        }

        //This clears out the list so that it is
        //empty.
        badguys.Clear();
    }
Posted by: Guest on April-01-2020
12

unity list

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

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

how to create a list in c# unity

List<Datatype> listName = new List<Datatype>();
ex: List<float> myList = new List<float>();
Posted by: Guest on March-26-2020

Code answers related to "how to create a public list unity"

C# Answers by Framework

Browse Popular Code Answers by Language