All of the following criteria must be met
All of the following are optional to answer
Describe the issue.
I thought I was doing something wrong but I took a look at preferences.cs in this repo and the parameter doesn't actually go anywhere
public static MelonPreferences_Category CreateCategory(string identifier, string display_name = null, bool is_hidden = false, bool should_save = true)
{
if (string.IsNullOrEmpty(identifier))
throw new Exception("identifier is null or empty when calling CreateCategory");
if (display_name == null)
display_name = identifier;
MelonPreferences_Category category = GetCategory(identifier);
if (category != null)
return category;
return new MelonPreferences_Category(identifier, display_name, is_hidden);
}
Did you attach your log file?
Select an option below
All of the following criteria must be met
All of the following are optional to answer
Describe the issue.
I thought I was doing something wrong but I took a look at preferences.cs in this repo and the parameter doesn't actually go anywhere
Did you attach your log file?
Select an option below