< Summary

Class:DCL.SettingsCommon.CommonSettingsScriptableObjects
Assembly:Settings
File(s):/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/Settings/CommonSettingsScriptableObjects.cs
Covered lines:3
Uncovered lines:0
Coverable lines:3
Total lines:14
Line coverage:100% (3 of 3)
Covered branches:0
Total branches:0

File(s)

/tmp/workspace/unity-renderer/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/Settings/CommonSettingsScriptableObjects.cs

#LineLine coverage
 1namespace DCL.SettingsCommon
 2{
 3    public static class CommonSettingsScriptableObjects
 4    {
 5        private static BooleanVariable shadowsDisabledValue;
 36        public static BooleanVariable shadowsDisabled => CommonScriptableObjects.GetOrLoad(ref shadowsDisabledValue, "Sc
 7
 8        private static BooleanVariable detailObjectCullingDisabledValue;
 39        public static BooleanVariable detailObjectCullingDisabled => CommonScriptableObjects.GetOrLoad(ref detailObjectC
 10
 11        private static BooleanVariable dynamicSkyboxDisabledValue;
 112        public static BooleanVariable dynamicSkyboxDisabled => CommonScriptableObjects.GetOrLoad(ref dynamicSkyboxDisabl
 13    }
 14}