Search found 5087 matches
- Mon Feb 03, 2025 4:48 pm
- Forum: General Discussion for Easy Save 3
- Topic: Fixed Save Slots
- Replies: 1
- Views: 5040
Re: Fixed Save Slots
Hi Richard, Have you taken a look at the Creating Save Slots guide? https://docs.moodkie.com/easy-save-3/es3-guides/creating-save-slots/ It's also further documented via the scripts themselves, which are fully commented. Generally the save slots work as described in your flow chart. If you wanted to...
- Mon Feb 03, 2025 3:56 pm
- Forum: General Discussion for Easy Save 3
- Topic: Dictionary of instantiated Transform - Keys returning null
- Replies: 7
- Views: 11965
Re: Dictionary of instantiated Transform - Keys returning null
Actually don't worry about sending it through moodkie.com/repro, I've managed to get what I need from what you've sent. If you could delete it from Github that would be appreciated however. In your case loading twice won't work because there's still no guarantee that the Dictionary will be loaded af...
- Mon Feb 03, 2025 3:39 pm
- Forum: General Discussion for Easy Save 3
- Topic: Dictionary of instantiated Transform - Keys returning null
- Replies: 7
- Views: 11965
Re: Dictionary of instantiated Transform - Keys returning null
Apologies, I meant to direct you to moodkie.com/repro rather than moodkie.com/contact. This just ensures that we have all of the info required to replicate the issue and that your project is minimal.
All the best,
Joel
All the best,
Joel
- Mon Feb 03, 2025 7:21 am
- Forum: General Discussion for Easy Save 3
- Topic: Dictionary of instantiated Transform - Keys returning null
- Replies: 7
- Views: 11965
Re: Dictionary of instantiated Transform - Keys returning null
Hi there, Since the gameobjects in the scene are simply using the easy save, I read this in the docs "If you can’t guarantee the order in which objects are loaded (this is often the case with Auto Save) then you may need to load twice: once to load the instances, and again to load references to...
- Sun Feb 02, 2025 7:56 am
- Forum: General Discussion for Easy Save 3
- Topic: Dictionary of instantiated Transform - Keys returning null
- Replies: 7
- Views: 11965
Re: Dictionary of instantiated Transform - Keys returning null
Hi there, Fields of reference types will be saved and loaded by reference, so the Transforms in your Dictionary will be saved and loaded by reference. The issue you are encountering is likely because there isn't a reference to the Transform anymore, because you haven't saved and loaded the GameObjec...
- Fri Jan 31, 2025 7:45 am
- Forum: General Discussion for Easy Save 3
- Topic: always loads from “SaveFile.es3” instead of my custom file name
- Replies: 2
- Views: 5254
Re: always loads from “SaveFile.es3” instead of my custom file name
Hi there,
There's an error in your code. You're not specifying the filename in your ES3.LoadInto method. I.e.
Should be:
All the best,
Joel
There's an error in your code. You're not specifying the filename in your ES3.LoadInto method. I.e.
Code: Select all
ES3.LoadInto(key, data);
Code: Select all
ES3.LoadInto(key, data, fileName);
Joel
- Thu Jan 30, 2025 7:14 am
- Forum: General Discussion for Easy Save 3
- Topic: Saving gameobject
- Replies: 1
- Views: 5195
Re: Saving gameobject
Hi there, This should be possible as long as every Component on the GameObject is serializable, but be very aware of the information in the Saving GameObjects guide regarding what Components are saved and loaded by default. https://docs.moodkie.com/easy-save-3/es3-guides/saving-loading-gameobjects-p...
- Mon Jan 27, 2025 11:27 am
- Forum: General Discussion for Easy Save 3
- Topic: ES3 OnWillSaveAsset popup keep appearing on Save / Play
- Replies: 6
- Views: 9728
Re: ES3 OnWillSaveAsset popup keep appearing on Save / Play
Hi there, Unfortunately the line you've commented out is integral to the functioning of Easy Save, and likely it's just masked the issue if you're still seeing flashing (i.e. it just means it's flashing faster because less processing is happening). If you're able to replicate this in a minimal proje...
- Mon Jan 27, 2025 11:02 am
- Forum: General Discussion for Easy Save 3
- Topic: ES3 OnWillSaveAsset popup keep appearing on Save / Play
- Replies: 6
- Views: 9728
Re: ES3 OnWillSaveAsset popup keep appearing on Save / Play
Apologies, I didn't see that. The only other thing which could cause this is something to do with how we find assemblies containing ES3Types, but this shouldn't cause the flashing behaviour you're experiencing and I wonder whether it's a bug at Unity's end causing their OnWillSaveAssets event to be ...
- Mon Jan 27, 2025 10:32 am
- Forum: General Discussion for Easy Save 3
- Topic: ES3 OnWillSaveAsset popup keep appearing on Save / Play
- Replies: 6
- Views: 9728
Re: ES3 OnWillSaveAsset popup keep appearing on Save / Play
Hi there,
This popup appears when Easy Save is gathering references and initializing components. If you don't want this to happen you can manually manage references as described here:
https://docs.moodkie.com/easy-save-3/es ... erformance
All the best,
Joel
This popup appears when Easy Save is gathering references and initializing components. If you don't want this to happen you can manually manage references as described here:
https://docs.moodkie.com/easy-save-3/es ... erformance
All the best,
Joel