Easy Save outside of unity

Easy Save 2 has been replaced by Easy Save 3, so is no longer supported.
Locked
IMakeStuff
Posts: 1
Joined: Sat Jul 25, 2020 12:10 am

Easy Save outside of unity

Post by IMakeStuff »

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
User avatar
Joel
Moodkie Staff
Posts: 4824
Joined: Wed Nov 07, 2012 10:32 pm

Re: Easy Save outside of unity

Post by Joel »

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
Joel @ Moodkie Interactive
Purchase Easy Save | Contact | Guides | Docs | Getting started
Locked