< Summary

Class:DCL.SettingsCommon.SettingsControllers.GeneralSettingsReferences
Assembly:SettingsControllers
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/Settings/SettingsControllers/GeneralSettingsReferences.cs
Covered lines:1
Uncovered lines:1
Coverable lines:2
Total lines:18
Line coverage:50% (1 of 2)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
Awake()0%110100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/Settings/SettingsControllers/GeneralSettingsReferences.cs

#LineLine coverage
 1using Cinemachine;
 2using UnityEngine;
 3
 4namespace DCL.SettingsCommon.SettingsControllers
 5{
 6    /// <summary>
 7    /// This MonoBehaviour will only contain the external references needed for the general settings.
 8    /// </summary>
 9    public class GeneralSettingsReferences : MonoBehaviour
 10    {
 11        public CinemachineFreeLook thirdPersonCamera;
 12        public CinemachineVirtualCamera firstPersonCamera;
 13
 014        public static GeneralSettingsReferences i { get; private set; }
 15
 24816        private void Awake() { i = this; }
 17    }
 18}