UnityEditor.EditorPrefs.GetBool C# (CSharp) Method

GetBool() private method

private GetBool ( string key ) : bool
key string
return bool
        public static bool GetBool(string key)
        {
            bool defaultValue = false;
            return GetBool(key, defaultValue);
        }

Same methods

EditorPrefs::GetBool ( string key, [ defaultValue ) : bool