Hannah B
6
Q:

unity get list length

public List<GameObject> gameObjects = new List<GameObject>();
void Start()
{
	int listLength = gameObjects.Count;
}
4
public List<Transform> items = new List<Transform>();

void Start()
{
    print(items.Count);
  
    items.Add(new Transform());
  
    print(items.Count);
}

//output\\

/// 0 

/// 1
2
//Get list length / count

//Example
public List<GameObject> gameObjects = new List<GameObject>();

void Update()
{
  int listLength = gameObject.Count;
    if(listLength >= 0)
      	Debug.Log("Do something");
    else
       	Debug.Log("Do something else");
}
1

New to Communities?

Join the community