Save complete scene state with a name

Discussion and help for Easy Save 3
landixus
Posts: 12
Joined: Mon Nov 29, 2021 4:08 pm

Re: Save complete scene state with a name

Post by landixus »

I forget my Laptop @ work
but this do the trick for 3 different save files?:

Code: Select all

public void save01(){
// To save
ES3AutoSaveMgr.Current.settings.path = "My1File.es3";
ES3AutoSaveMgr.Current.Save();
 }
 
 public void load01(){
// To load
ES3AutoSaveMgr.Current.settings.path = "My1File.es3";
ES3AutoSaveMgr.Current.Load();
}

public void save02){
// To save
ES3AutoSaveMgr.Current.settings.path = "My2File.es3";
ES3AutoSaveMgr.Current.Save();
...
So ?
If so, its so easy :) Also for a bad coder like me! :)
User avatar
Joel
Moodkie Staff
Posts: 4826
Joined: Wed Nov 07, 2012 10:32 pm

Re: Save complete scene state with a name

Post by Joel »

Precisely how I would've coded it, so if you're a bad coder then I am too :D

All the best,
Joel
Joel @ Moodkie Interactive
Purchase Easy Save | Contact | Guides | Docs | Getting started
Post Reply