< 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    {
 65511        public BaseVariable<bool> objectUpdated = new BaseVariable<bool>(false);
 65512        public BaseVariable<bool> useProceduralSkybox = new BaseVariable<bool>(false);
 65513        public BaseVariable<string> configToLoad = new BaseVariable<string>("Generic Skybox");
 65514        public BaseVariable<float> lifecycleDuration = new BaseVariable<float>(60);
 65515        public BaseVariable<float> jumpToTime = new BaseVariable<float>(-1);
 65516        public BaseVariable<float> updateReflectionTime = new BaseVariable<float>(-1);
 65517        public BaseVariable<bool> disableReflection = new BaseVariable<bool>(false);
 65518        public BaseVariable<float> currentVirtualTime = new BaseVariable<float>();
 65519        public BaseVariable<bool> useDynamicSkybox = new BaseVariable<bool>(true);
 65520        public BaseVariable<float> fixedTime = new BaseVariable<float>(0);
 65521        public BaseVariable<int> reflectionResolution = new BaseVariable<int>(256);
 65522        public BaseVariable<AvatarMaterialProfile> avatarMatProfile = new BaseVariable<AvatarMaterialProfile>(AvatarMate
 23    }
 24}

Methods/Properties

DataStore_SkyboxConfig()