• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!
  • Hello [name]! Thanks for joining the GMC. Before making any posts in the Tech Support forum, can we suggest you read the forum rules? These are simple guidelines that we ask you to follow so that you can get the best help possible for your issue.

Mac OSX Mac Export (AppData/Local) Folder [SOLVED]

For Windows, you can save ini files to UserName/AppData/Local/Gamename
Where are these ini files saved to on a Mac?

Edit:
Ahhh...hidden folders. I think I've figured it out. Thanks. Apparently you have to hit Windows Key + Shift + "." to reveal hidden folders.
To those who don't know where the working directory is located. Simply create a sample project and put this in the draw event:

var s = "program_directory = " + string(program_directory) +
"#" +
"working_directory = " + string(working_directory) +
"#" +
"temp_directory = " + string(temp_directory);


draw_text(5,5,s);

All shall be revealed lol
 
Last edited:
Top