SaveManager
Overview
void
any
void
void
void
void
void
void
Functions
AddPersistentVariable()
void AddPersistentVariable(table mod, string variableName, any value,
VariablePersistenceMode
persistenceMode, boolean? ignoreGlowingHourglass? = false, fun(: )? conditionalSave?)
Adds a variable to the save manager. The variable name must be unique within your mod.
GetPersistentVariable()
any GetPersistentVariable(table mod, string variableName)
Gets a variable from the save manager.
RemovePersistentVariable()
void RemovePersistentVariable(table mod, string variableName)
Removes a variable from the save manager.
RemoveVariablesForFeatureKey()
void RemoveVariablesForFeatureKey(ModPersistentData modPersistentData, "run" | "level" | "room" saveDataKey)
ResetPersistentVariable()
void ResetPersistentVariable(table mod, string variableName)
Resets a variable to its default value in the save manager.
RestoreDefaultForFeatureKey()
void RestoreDefaultForFeatureKey(ModPersistentData modPersistentData, "run" | "level" | "room" saveDataKey)
RestoreDefaultsForAllFeaturesKey()
void RestoreDefaultsForAllFeaturesKey("run" | "level" | "room" saveKey)
SetPersistentVariable()
void SetPersistentVariable(table mod, string variableName, any newValue, boolean? overrideType? = false)
Sets a variable from the save manager.
Last updated