Mac OSX Need to find save files on my Mac[SOLVED]

S

Sofia Orlando

Guest
Right now I'm testing the save file system for the first time and I can't find it anywhere on my computer. I have a macOS High Sierra if that helps. Also, I'm extremely new to coding so forgive me if I don't understand at first.
 

YellowAfterlife

ᴏɴʟɪɴᴇ ᴍᴜʟᴛɪᴘʟᴀʏᴇʀ
Forum Staff
Moderator
Save files go to
Code:
~/Library/Application Support/<your package name>
Depending on situation, can be easier to make the game write a file with a distinct name, and then locate it using Finder.
 
S

Sofia Orlando

Guest
Save files go to
Code:
~/Library/Application Support/<your package name>
Depending on the situation, can be easier to make the game write a file with a distinct name, and then locate it using Finder.
I've found the files but none of them are from my game.
 
S

Sam (Deleted User)

Guest
get_string(game_save_id,game_save_id);
copy+paste textbox
 
On my Mac, the folders are as follows:

If you are testing the game using the play button in the IDE, the files are created in :

/Users/<username>/Library/Application Support/com.yoyogames.macyoyorunner/

If you are running the game standalone, it will be :

/Users/<username>/Library/Application Support/<App ID>/

App ID is found in Game Options -> MacOS -> General -> App ID
 
S

Sofia Orlando

Guest
On my Mac, the folders are as follows:

If you are testing the game using the play button in the IDE, the files are created in :

/Users/<username>/Library/Application Support/com.yoyogames.macyoyorunner/

If you are running the game standalone, it will be :

/Users/<username>/Library/Application Support/<App ID>/

App ID is found in Game Options -> MacOS -> General -> App ID
I've found it! Thank you so much!
 
Top