Unity Basics Course: What is a List?

Unity is a powerful engine widely used in game development, providing a user-friendly interface and various features to help developers efficiently create games. In this tutorial, we will explore one of the basic concepts of Unity, “List.” Lists are very useful tools for managing and manipulating data. We will start with the basic concepts, explore points to consider when using lists in Unity, and look at various use cases.

1. Basic Concept of Lists

A list is an ordered collection of elements with the same data type. This is a necessary concept that helps manage multiple variables efficiently. For example, in the case of a player’s inventory, it is convenient to store multiple items in a list. Lists can have dynamic sizes and possess the characteristic of adding or removing elements as needed.

1.1 Difference Between Lists and Arrays

Lists have several key differences from arrays. Arrays have a fixed size, and to change the size, you need to create a new array and copy the existing data. In contrast, lists are variable in size and can easily add or remove elements at runtime. This is a significant advantage in game development.

1.2 Declaring a List in C#

Unity uses C# for scripting. To use a list, you first need to include the System.Collections.Generic namespace. Then, you can declare a list as follows:

using System.Collections.Generic;

List<int> numbers = new List<int>();

The above code is an example of creating a list with integer elements. The element type of a list can be anything, and you can use not only basic data types but also user-defined classes.

2. Basic Methods of Lists

Lists provide various methods. In this section, we will look at some of the most commonly used methods.

2.1 Adding Elements to a List

To add elements to a list, use the Add() method:

numbers.Add(5); // Add 5 to the list

To add multiple elements at once, you can use the AddRange() method:

numbers.AddRange(new int[] { 1, 2, 3 }); // Add 1, 2, 3 to the list

2.2 Adding Elements at a Specific Index

To add an element at a specific index in a list, you can use the Insert() method:

numbers.Insert(0, 10); // Insert 10 at index 0

2.3 Removing Elements from a List

To remove elements from a list, you can use the Remove() or RemoveAt() methods:

numbers.Remove(5); // Remove 5 from the list
numbers.RemoveAt(0); // Remove element at index 0

2.4 Checking the Size of a List

To check the size of a list, you can use the Count property:

int size = numbers.Count; // Store the size of the list

3. Use Cases of Lists

Lists can be utilized in various ways in game development. Here are some use cases:

3.1 Inventory System

Using lists for implementing inventory in a game is very convenient. You can easily manage the list of currently available items by adding and removing items. Here’s a simple example of an inventory system:

using System.Collections.Generic;

public class Inventory
{
    private List<string> items = new List<string>();

    public void AddItem(string item)
    {
        items.Add(item);
    }

    public void RemoveItem(string item)
    {
        items.Remove(item);
    }

    public void ListItems()
    {
        foreach (var item in items)
        {
            Debug.Log("Item: " + item);
        }
    }
}

3.2 Managing Enemy NPCs

Managing enemy NPCs in a game using lists allows you to easily update each enemy’s state and remove them if necessary. For example:

using System.Collections.Generic;

public class EnemyManager : MonoBehaviour
{
    private List<Enemy> enemies = new List<Enemy>();

    public void AddEnemy(Enemy enemy)
    {
        enemies.Add(enemy);
    }

    public void UpdateEnemies()
    {
        foreach (var enemy in enemies)
        {
            enemy.Update();
            if (enemy.IsDead())
            {
                enemies.Remove(enemy);
            }
        }
    }
}

3.3 Custom Data Management

In Unity, you can save user-defined classes in lists to manage specific data. For example, you can manage player’s skills using a list:

using System.Collections.Generic;

public class Skill
{
    public string name;
    public int level;

    public Skill(string name, int level)
    {
        this.name = name;
        this.level = level;
    }
}

public class Player
{
    private List<Skill> skills = new List<Skill>();

    public void AddSkill(Skill skill)
    {
        skills.Add(skill);
    }
}

4. Advanced Techniques with Lists

Lists can be used effectively not only for simple data management but also through more advanced techniques. Here are some advanced techniques for utilizing lists.

4.1 Using LINQ for List Processing

In C#, you can use LINQ (Language Integrated Query) to easily work with lists. You can find elements matching specific conditions or sort data:

using System.Linq;

var sortedList = numbers.OrderBy(n >= n); // Sort the list
var filteredList = numbers.Where(n => n > 5).ToList(); // Filter elements greater than 5

4.2 Utilizing List Properties

Lists can be easily managed with various properties. For example, you can add properties for sorting lists, version control, and data filtering.

5. Considerations and Performance

There are several points to consider when using lists. Because lists have a dynamic size, adding or removing many elements can impact performance. To optimize performance, consider the following points:

5.1 Performance of List Initialization

Specifying the expected size when initializing a list can improve performance. You can create a list as follows:

List<int> numbers = new List<int>(100); // Initialize with size 100

5.2 Performance of Data Sorting and Searching

When sorting or searching for data in a list, you should choose the optimal method considering the complexity of the algorithms. If necessary, you can use binary search on sorted data to further improve performance.

5.3 Memory Optimization

Creating too many lists can increase memory usage. Avoid unnecessary lists and free up memory by using the Clear() method for lists that are no longer needed.

Conclusion

Lists are a powerful data structure in Unity that enables management of data in various forms. Compared to arrays, their flexibility and efficiency make them an essential tool in game development. Once you understand the basic concepts of lists, how to use their methods, and advanced techniques, you will be able to efficiently manage various data structures within your game. I hope this tutorial has helped you understand the importance and potential uses of lists.

I look forward to continuing this journey of exploring Unity’s various features and foundational concepts with you. For more information, feel free to explore various resources in the official documentation and community. Happy Coding!