< 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:26
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    {
 4611        public BaseVariable<bool> objectUpdated = new BaseVariable<bool>(false);
 4612        public BaseVariable<string> configToLoad = new BaseVariable<string>("Generic Skybox");
 4613        public BaseVariable<float> lifecycleDuration = new BaseVariable<float>(60);
 4614        public BaseVariable<float> jumpToTime = new BaseVariable<float>(-1);
 4615        public BaseVariable<float> updateReflectionTime = new BaseVariable<float>(-1);
 4616        public BaseVariable<bool> disableReflection = new BaseVariable<bool>(false);
 4617        public BaseVariable<float> currentVirtualTime = new BaseVariable<float>();
 18        /// <summary>
 19        /// Use Fixed or Dynamic skybox
 20        /// </summary>
 4621        public BaseVariable<bool> useDynamicSkybox = new BaseVariable<bool>(true);
 4622        public BaseVariable<float> fixedTime = new BaseVariable<float>(0);
 4623        public BaseVariable<int> reflectionResolution = new BaseVariable<int>(256);
 4624        public BaseVariable<AvatarMaterialProfile> avatarMatProfile = new BaseVariable<AvatarMaterialProfile>(AvatarMate
 25    }
 26}

Methods/Properties

DataStore_SkyboxConfig()