< Summary

Class:DCL.Skybox.Config3DBase
Assembly:ProceduralSkybox
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Rendering/ProceduralSkybox/ToolProceduralSkybox/Scripts/Configuration/Config3DBase.cs
Covered lines:0
Uncovered lines:3
Coverable lines:3
Total lines:23
Line coverage:0% (0 of 3)
Covered branches:0
Total branches:0

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
Config3DBase()0%2100%
IsConfigActive(...)0%2100%

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Rendering/ProceduralSkybox/ToolProceduralSkybox/Scripts/Configuration/Config3DBase.cs

#LineLine coverage
 1using System.Collections;
 2using System.Collections.Generic;
 3using UnityEngine;
 4
 5namespace DCL.Skybox
 6{
 7    public enum Additional3DElements
 8    {
 9        Dome,
 10        Satellite
 11    }
 12
 13    [System.Serializable]
 14    public class Config3DBase
 15    {
 16        public Additional3DElements configType;
 017        public bool enabled = true;
 18        public bool expandedInEditor = false;
 019        public string nameInEditor = "";
 20
 021        public virtual bool IsConfigActive(float currentTime, float cycleTime = 24) { return true; }
 22    }
 23}