| | 1 | | using DCL.Interface; |
| | 2 | | using System.Collections; |
| | 3 | | using TMPro; |
| | 4 | | using UnityEngine; |
| | 5 | | using UnityEngine.UI; |
| | 6 | |
|
| | 7 | | namespace DCL.Tutorial |
| | 8 | | { |
| | 9 | | /// <summary> |
| | 10 | | /// Class that represents the onboarding tutorial step related to the greetings showed in Genesis Plaza. |
| | 11 | | /// </summary> |
| | 12 | | public class TutorialStep_GenesisGreetingsAfterDeepLink : TutorialStep_GenesisGreetings |
| | 13 | | { |
| | 14 | | public override void OnStepFinished() |
| | 15 | | { |
| 1 | 16 | | base.OnStepFinished(); |
| 1 | 17 | | tutorialController?.hudController?.taskbarHud?.SetVisibility(true); |
| 1 | 18 | | CommonScriptableObjects.featureKeyTriggersBlocked.Set(false); |
| 1 | 19 | | } |
| | 20 | | } |
| | 21 | | } |