Understanding Background Save & Load
Working With Operations
Step 1: Getting the Operation
Get Operation From Load
SaveFileOperation operation = saveFile.Load();Get Operation From Save
SaveFileOperation operation = saveFile.Save();Get Operation After Calling Save or Load
SaveFileOperation operation = saveFile.operation;Step 2: Waiting for Completion
On Operation Ended Event (RECOMMENDED)
Checking the State (NOT RECOMMENDED)
Last updated