Page 2 of 2

Re: Save complete scene state with a name

Posted: Tue Nov 30, 2021 4:30 pm
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! :)

Re: Save complete scene state with a name

Posted: Tue Nov 30, 2021 5:49 pm
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