Hello Construct community!
Recently I've decided to switch my game's save system from using local storage to writing save data with the file system plugin, since I'm planning to launch my game on Steam.
Here are some questions I have about writing a file with save data:
1. If I understand correctly, you need do something like this:
Wherein you write a file called "Save_Data.txt" inside the app folder.
2. What is the best folder to save the Save_Data.txt to? I've noticed there are other picker tags like "<current-app-data>", "<local-app-data>", and "<roaming-app-data>". Is there any reason to use or not to use one of these?
3. Does the overwrite mode work the same as Python's open() overwrite mode, where It will create the file if it does not exist?
I appreciate any thoughts or help on this!