如何在列表中打印游戏对象的位置

本文关键字:游戏 对象 位置 打印 列表 | 更新日期: 2023-09-27 18:18:15

我有一个列表和文本:

List<GameObject> EnteredPlayers = new List<GameObject>();
public Text finishText;

当玩家进入触发器时,他们将被添加到列表中:

if (col.gameObject.tag == "finish") {
        EnteredPlayers.Add(player);
        finishText.text = //player's position in list here
    }

我想在列表中打印玩家的位置。例如,如果它们的位置为[0],则文本将显示1st place .

你知道我该怎么做吗?

如何在列表中打印游戏对象的位置

// Add the player
EnteredPlayers.Add(player);
// Get the position
int position = EnteredPlayer.Count
// Create a dictionary with the position names
// Put this dictionary outside of your method managing the games
Dictionary<string, string> positionNames = new Dictionary<string, string>(){
    { "1", "First" },
    { "2", "Second" },
    { "3", "Third" }
};
// Assign the label text
finishText.Text = positionNames[position.ToString()];