How can everyone achieve local ‘save game data’?
Do you all use ‘SharedObject’?
1 Like
I use SharedObject. On HTML5 target it gets stored in the browser Local Storage and it works well. I also use it server-side.
1 Like
I use a shared object too. In instances where some sensitive data might be held in storage, I encrypt it, leveraging the crypto library.
1 Like
That’s great That’s great
