Esempio n. 1
0
        private void DisplayRatingUnlockedContent()
        {
            _unlockNotificationDialog.PrepareForActivation();
            _unlockNotificationDialog.AddItem("New Costume - Angel");

            if (CurrentState == Status.Active)
            {
                ActivateDialog("unlocks");
            }
            else
            {
                _firstDialog = "unlocks";
            }
        }
Esempio n. 2
0
        private void UnlockFullVersionContent()
        {
            _unlockNotificationDialog.PrepareForActivation();

            if ((Data.Profile.AreaIsLocked("Waterfall")) && (Data.Profile.AreaHasBeenCompleted("Hilltops")))
            {
                Data.Profile.UnlockNamedArea("Waterfall");
                _unlockNotificationDialog.AddItem("New Levels - Waterfall Area");
            }

            if (!Data.Profile.AvatarCostumeUnlocked("Angel"))
            {
                Data.Profile.UnlockCostume("Angel");
                Data.Profile.UnlockCostume("Wizard");
                Data.Profile.UnlockCostume("Mummy");
                _unlockNotificationDialog.AddItem("New Costumes - Angel, Wizard, Mummy");
            }

            if (_unlockNotificationDialog.HasContent)
            {
                _firstDialog = "unlocks";
            }
        }