Ejemplo n.º 1
0
    private void Start()
    {
        if (gameDataController.GetAchievementCount() >= 3)
        {
            SetUIUnlocked(0);
            gameDataController.UnlockMoorishIdol();
        }

        if (gameDataController.GetAchievementCount() >= 6)
        {
            SetUIUnlocked(1);
            gameDataController.UnlockButterflyFish();
        }

        if (gameDataController.GetAchievementCount() >= 9)
        {
            SetUIUnlocked(2);
            gameDataController.UnlockWhitetipReefShark();
        }
    }