< 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:11
Uncovered lines:0
Coverable lines:11
Total lines:23
Line coverage:100% (11 of 11)
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    {
 4411        public BaseVariable<bool> objectUpdated = new BaseVariable<bool>(false);
 4412        public BaseVariable<string> configToLoad = new BaseVariable<string>("Generic Skybox");
 4413        public BaseVariable<float> lifecycleDuration = new BaseVariable<float>(60);
 4414        public BaseVariable<float> jumpToTime = new BaseVariable<float>(-1);
 4415        public BaseVariable<float> updateReflectionTime = new BaseVariable<float>(-1);
 4416        public BaseVariable<bool> disableReflection = new BaseVariable<bool>(false);
 4417        public BaseVariable<float> currentVirtualTime = new BaseVariable<float>();
 4418        public BaseVariable<bool> useDynamicSkybox = new BaseVariable<bool>(true);
 4419        public BaseVariable<float> fixedTime = new BaseVariable<float>(0);
 4420        public BaseVariable<int> reflectionResolution = new BaseVariable<int>(256);
 4421        public BaseVariable<AvatarMaterialProfile> avatarMatProfile = new BaseVariable<AvatarMaterialProfile>(AvatarMate
 22    }
 23}

Methods/Properties

DataStore_SkyboxConfig()