Easy Save outside of unity
-
- Posts: 1
- Joined: Sat Jul 25, 2020 12:10 am
Easy Save outside of unity
Does Easy Save have an api for applications that don't use unity. I am currently designing an application and I want to use easy save. However the application is written in C++. It there a library for C++ or any other language
Re: Easy Save outside of unity
Hi there,
We have no parsers specifically for any other language as Easy Save data is only intended to be read within Unity.
However, Easy Save 3 uses JSON formatting (which is a fairly standard format) so you may be able to use a C++ JSON parser (of which there are many) to parse the data yourself.
Alternatively you could use ES3Spreadsheet to write the data to a CSV file and use a C++ CSV parser, or even parse it yourself by splitting the string.
All the best,
Joel
We have no parsers specifically for any other language as Easy Save data is only intended to be read within Unity.
However, Easy Save 3 uses JSON formatting (which is a fairly standard format) so you may be able to use a C++ JSON parser (of which there are many) to parse the data yourself.
Alternatively you could use ES3Spreadsheet to write the data to a CSV file and use a C++ CSV parser, or even parse it yourself by splitting the string.
All the best,
Joel