< Summary

Class:DCL.Tutorial.TutorialStep_GenesisGreetingsAfterDeepLink
Assembly:Onboarding
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Tutorial/Scripts/Steps/Initial/TutorialStep_GenesisGreetingsAfterDeepLink.cs
Covered lines:5
Uncovered lines:0
Coverable lines:5
Total lines:22
Line coverage:100% (5 of 5)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
OnStepFinished()0%770100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Tutorial/Scripts/Steps/Initial/TutorialStep_GenesisGreetingsAfterDeepLink.cs

#LineLine coverage
 1using DCL.Interface;
 2using System.Collections;
 3using TMPro;
 4using UnityEngine;
 5using UnityEngine.UI;
 6
 7namespace 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        {
 116            base.OnStepFinished();
 117            tutorialController?.hudController?.taskbarHud?.SetVisibility(true);
 118            tutorialController?.hudController?.profileHud?.SetBackpackButtonVisibility(true);
 119            CommonScriptableObjects.featureKeyTriggersBlocked.Set(false);
 120        }
 21    }
 22}

Methods/Properties

OnStepFinished()