< 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:2
Uncovered lines:0
Coverable lines:2
Total lines:11
Line coverage:100% (2 of 2)
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}