유니티 중복없는 랜덤뽑기 방법



GachaScript.cs 소스입니다

public List<string> GachaList = new List<string>() { "치킨", "탕수육", "햄버거", "피자", "라면" };

    public void Gacha()
    {
        for (int i = 0; i < 3; i++)
        {
            int rand = Random.Range(0, GachaList.Count);
            print(GachaList[rand]);
            GachaList.RemoveAt(rand);
        }

    }