Understanding Background Save & Load
Last updated
Last updated
You don't need to do anything extra to save and load data in the background. It will happen as long as backgroundTask
is set to true. However, you may have to change the way you code a little when working with save files.
Normally, if you want something to happen after saving or loading is complete, you would just respect the order of operations and execute your code after the save or load code.
If you've enabled 'Background Task' from the component or set backgroundTask
to true through code (which is essentially the same thing), then this rule does not apply.
Instead, you must wait for the saving or loading operation to complete. This can be done easily with the SaveFileOperation
class in two simple steps.
SaveFile.Load
and SaveFile.Save
return a SaveFileOperation object. This can be used to determine when saving or loading is completed. Whether it's saving or loading, there is no difference in how you work with the operation object.
It's important for saving to complete before loading, and loading to complete before saving. Which is why there can only be a single operation running at a time for a save file.
Save files store the most recent save file operation in memory. If you have recently called SaveFile.Load
or SaveFile.Save
, you can use SaveFile.operation
to get the operation. This will be null if load or save was not called.
There are 2 ways that you can check if the save file operation is complete.
Only use the onOperationEnded
event for save files that will save & load in the background.
SaveFileOperation.onOperationEnded
will be invoked when the operation has ended (when the operation state is either completed, canceled, or failed). Here's an example of how you can use this to execute some code after loading has completed:
If you'd like to ensure the operation was completed successfully, you can use an event like this instead:
SaveFileOperation
has an enum
called OperationState
. This will be updated as the operation state changes.
There are 5 states:
None: the operation has not started.
Ongoing: the operation is currently executing (it's either saving or loading),
Completed: the operation was successfully completed.
Canceled: the operation was canceled. This can only be done manually with SaveFileOperation.Cancel
.
Failed: an error was encountered during the operation and has been aborted. The error should be displayed in the console.
You can use this to check which state the operation is currently in.
If you'd like to do something right after saving or loading is complete, this method is not recommended because you will have to use this check every frame.