Search found 5054 matches
- Mon Jan 13, 2025 4:16 pm
- Forum: Feature Requests for Easy Save 3
- Topic: Support for SplineContainer (and dependent classes)
- Replies: 0
- Views: 530
Support for SplineContainer (and dependent classes)
Status Requested Complexity 5/10 Description Support for the SplineContainer class, and all of the classes it depends on such as Spline: https://docs.unity3d.com/Packages/com.unity.splines@2.0/api/UnityEngine.Splines.SplineContainer.html Note that SplineContainer is relatively complex as it depends...
- Thu Jan 09, 2025 9:19 am
- Forum: General Discussion for Easy Save 3
- Topic: AutoSave load chosen value
- Replies: 4
- Views: 1348
Re: AutoSave load chosen value
Hi there, You can save your ES3.Save data in the same file as your Auto Save data if you prefer. You just need to ensure that you've set the Location to Cache in Tools > Easy Save 3 > Settings (as Auto Save stores to the Cache by default). Then to save using code you would simply do ... ES3.Save(&qu...
- Thu Jan 09, 2025 9:09 am
- Forum: Feature Requests for Easy Save 3
- Topic: - Post your Feature Requests in this thread -
- Replies: 91
- Views: 196318
Re: - Post your Feature Requests in this thread -
Hi there, I'm using ArticulationBodies and one of the properties that I'd like to store is of type "ArticulationReducedSpace" (jointVelocity and jointPosition). If saved at the moment, only the degrees of freedom are saved: {"dofCount": 1} but not the actual data. You can replic...
- Thu Jan 09, 2025 9:01 am
- Forum: Feature Requests for Easy Save 3
- Topic: ArticulationReducedSpace and ArticulationBody Support
- Replies: 1
- Views: 832
ArticulationReducedSpace and ArticulationBody Support
Status Requested Complexity 2/10 Description Native support for the ArticulationReducedSpace and ArticulationBody classes: https://docs.unity3d.com/6000.0/Documentation/ScriptReference/ArticulationBody.html https://docs.unity3d.com/2020.1/Documentation/ScriptReference/ArticulationReducedSpace.html ...
- Thu Jan 09, 2025 8:56 am
- Forum: General Discussion for Easy Save 3
- Topic: Encryption new user
- Replies: 2
- Views: 710
Re: Encryption new user
Hi there, and thanks for the feedback. I think you may be mistaken. Using the following code is valid: var settings = new ES3Settings(ES3.EncryptionType.AES, myPassword); I suspect the reason that it wasn't working for you is because the default file already had unencrypted data saved to it, and sav...
- Tue Jan 07, 2025 9:03 am
- Forum: General Discussion for Easy Save 3
- Topic: AutoSave load chosen value
- Replies: 4
- Views: 1348
Re: AutoSave load chosen value
Hi there, I'm not fully sure I understand what you mean. However, I will assume that you mean loading a specific variable. Auto Save is for saving GameObjects and their supported Components and loading them in the same scene they were saved. If you want to save specific values and load them in a dif...
- Mon Dec 30, 2024 2:04 pm
- Forum: General Discussion for Easy Save 3
- Topic: ES3Spreadsheet GetCell and SetCell Add "" to Data Containing Spaces
- Replies: 7
- Views: 4684
Re: ES3Spreadsheet GetCell and SetCell Add "" to Data Containing Spaces
Glad to be of assistance Panos, let me know if there's anything else I can help you with
All the best,
Joel
All the best,
Joel
- Mon Dec 30, 2024 9:36 am
- Forum: General Discussion for Easy Save 3
- Topic: ES3Spreadsheet GetCell and SetCell Add "" to Data Containing Spaces
- Replies: 7
- Views: 4684
Re: ES3Spreadsheet GetCell and SetCell Add "" to Data Containing Spaces
Hi there, If the results were INVALID, I'd say that the problem lies 100% with the UIS asset developer. But this is not the case. If their asset is unable to read a valid CSV file then it indicates an issue at their end. The CSV specification is the CSV specification: if they choose not to support q...
- Sun Dec 29, 2024 10:14 am
- Forum: General Discussion for Easy Save 3
- Topic: ES3Spreadsheet GetCell and SetCell Add "" to Data Containing Spaces
- Replies: 7
- Views: 4684
Re: ES3Spreadsheet GetCell and SetCell Add "" to Data Containing Spaces
Thanks for sending that over. The file you have sent me is a valid CSV and the behaviour you're describing is adhering to the CSV specification. If you go to any CSV validator (such as https://toolkitbay.com/tkb/tool/csv-validator) and put the file into the validator, you will see that the file crea...
- Tue Dec 24, 2024 10:06 am
- Forum: General Discussion for Easy Save 3
- Topic: Changing the type of an existing field
- Replies: 2
- Views: 2280
Re: Changing the type of an existing field
Hi there, Your approach doesn't work because you've already tried to read the data, so you can't try to read it a second time because you've already advanced in the file. In this case you would usually save a version number in the file to indicate what type of data the file is expected to contain an...