Checking Data
Checking If Save State Is Empty
You can check if a save state is empty (does not have any saved data) with the IsEmpty method.
bool result = saveState.IsEmpty();Checking If Data Exists
You can check if a save state has specific data with the HasData method.
bool result = saveState.HasData("DataID");Last updated