When saving an array, it saves to the same location of the .cap. How can I save it to another directory?
At the moment, I'm trying to move the saved array to another directory in the same folder, but I'm not sure how to get it to work.
The parameter is just a path to save it to, not a filename, so whatever you type in it is where it goes.
Develop games in your browser. Powerful, performant & highly capable.
You shouldn't use a filename without a path. If you do that, the operating decides where it goes, and on different computers it might not be the same path as the .cap. Use AppPath & "Filename.ext" if you want it in the same directory.
Thanks.