Search found 2 matches

by Oohara
Wed Dec 28, 2022 1:06 pm
Forum: General Discussion
Topic: Easy Save works on Unity Editor, but not on Android.
Replies: 3
Views: 1072

Re: Easy Save works on Unity Editor, but not on Android.

I rewrote the singleton object code as follows(They are tagged for visibility in the Unity Editor) private void Awake() { DataLoad(); } public void DataSave() { Debug.Log("<color=cyan>TRYING to SAVE</color>"); ES3.Save("RunGame", saved_data); Debug.Log("<color=cyan>DATA SAVE...
by Oohara
Wed Dec 28, 2022 5:40 am
Forum: General Discussion
Topic: Easy Save works on Unity Editor, but not on Android.
Replies: 3
Views: 1072

Easy Save works on Unity Editor, but not on Android.

Hello. In my project, the SaveData class save and load works on Unity Editor, but not on Android (not tested on iOS), and I am having problems with corrupted save data or missing (not saved?) save data. The save data is saved in SaveData class, which contains the custom classes skill_data, WorldData...