< 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:0
Uncovered lines:4
Coverable lines:4
Total lines:21
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0

Metrics

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

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        {
 016            base.OnStepFinished();
 017            tutorialController?.hudController?.taskbarHud?.SetVisibility(true);
 018            CommonScriptableObjects.featureKeyTriggersBlocked.Set(false);
 019        }
 20    }
 21}

Methods/Properties

OnStepFinished()