Search Unity

Saving and Loading in EasySave3 AutoSave problems

Discussion in 'Assets and Asset Store' started by BevvyofFun, May 15, 2021.

  1. BevvyofFun

    BevvyofFun

    Joined:
    Aug 19, 2020
    Posts:
    27
    Hi,

    I've been trying to implement EasySave3's autoSave in my project with no luck. What do I need for buttons other than the simplified code below when using AutoSave set up:

    Code (CSharp):
    1.  
    2.  
    3. //save button
    4. public void SaveCurrentGame() {
    5.  
    6.     ES3AutoSaveMgr.Current.Save();
    7. }
    8.  
    9. //load button
    10. public void GameLoad() {
    11.  
    12.     ES3AutoSaveMgr.Current.Load();
    13.  
    14. }
    15.  
    I appreciate any help with this!