< Summary

Class:DCL.DataStore_SkyboxConfig
Assembly:DataStore
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/DataStore/DataStore_SkyboxConfig.cs
Covered lines:12
Uncovered lines:0
Coverable lines:12
Total lines:24
Line coverage:100% (12 of 12)
Covered branches:0
Total branches:0

Metrics

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

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/DataStore/DataStore_SkyboxConfig.cs

#LineLine coverage
 1namespace DCL
 2{
 3    public enum AvatarMaterialProfile
 4    {
 5        InWorld,
 6        InEditor
 7    }
 8
 9    public class DataStore_SkyboxConfig
 10    {
 64311        public BaseVariable<bool> objectUpdated = new BaseVariable<bool>(false);
 64312        public BaseVariable<bool> useProceduralSkybox = new BaseVariable<bool>(false);
 64313        public BaseVariable<string> configToLoad = new BaseVariable<string>("Generic Skybox");
 64314        public BaseVariable<float> lifecycleDuration = new BaseVariable<float>(60);
 64315        public BaseVariable<float> jumpToTime = new BaseVariable<float>(-1);
 64316        public BaseVariable<float> updateReflectionTime = new BaseVariable<float>(-1);
 64317        public BaseVariable<bool> disableReflection = new BaseVariable<bool>(false);
 64318        public BaseVariable<float> currentVirtualTime = new BaseVariable<float>();
 64319        public BaseVariable<bool> useDynamicSkybox = new BaseVariable<bool>(true);
 64320        public BaseVariable<float> fixedTime = new BaseVariable<float>(0);
 64321        public BaseVariable<int> reflectionResolution = new BaseVariable<int>(256);
 64322        public BaseVariable<AvatarMaterialProfile> avatarMatProfile = new BaseVariable<AvatarMaterialProfile>(AvatarMate
 23    }
 24}

Methods/Properties

DataStore_SkyboxConfig()