
It looks like you're new here. If you want to get involved, click one of these buttons!
Hi Everyone. I have save system for my game. Script is working on Windows and Editor. But it is not working on Android Build.
This is my save system
I use this code for save game:
SaveManager.SaveGame(data, Application.persistentDataPath + "/save.xml");
This code for load game:
data = SaveManager.LoadGame(Application.persistentDataPath + "/save.xml");