< 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:4
Uncovered lines:0
Coverable lines:4
Total lines:21
Line coverage:100% (4 of 4)
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        // Scriptable object, used by SkyboxTimeControlConfiguration scriptable object in "Flag That Disables Me" to Ena
 12        private const string DYNAMIC_SKYBOX_DISABLED_RESOURCE = "ScriptableObjects/DynamicSkyboxDisabled";
 13        private static BooleanVariable dynamicSkyboxDisabledValue;
 114        public static BooleanVariable dynamicSkyboxDisabled => CommonScriptableObjects.GetOrLoad(ref dynamicSkyboxDisabl
 15
 16        // Scriptable object, used by SkyboxTimeControlConfiguration and DynamicSkyboxControlCOnfiguration scriptable ob
 17        private const string SKYBOX_CONTROLLED_BY_REALM_RESOURCE = "ScriptableObjects/SkyboxControlledByRealm";
 18        private static BooleanVariable skyboxControlledByRealmValue;
 1119        public static BooleanVariable SkyboxControlledByRealm => CommonScriptableObjects.GetOrLoad(ref skyboxControlledB
 20    }
 21}