GameAnalytics / GA-SDK-DEFOLD

Repository for GameAnalytics Defold SDK
MIT License
14 stars 7 forks source link

Move Linux folder to ~/.config/GameAnalytics #7

Closed subsoap closed 5 years ago

subsoap commented 5 years ago

Currently it creates a folder

~/GameAnalytics

It should however be

~/.config/GameAnalytics

Ideally it would be nice if we could set this folder.

the1schwartz commented 5 years ago

This should now be possible in the latest version (v2.2.0). The document page has been updated on how to this: https://gameanalytics.com/docs/item/defold-sdk#configuring-game-project

Taken from the documentation page: [gameanalytics] write_path_osx = $HOME/test/test1/test2 write_path_windows = %USERPROFILE%/test/test1/test2 write_path_linux = $HOME/test/test1/test2

Any missing directories in the path will also be created.

subsoap commented 5 years ago

Great thank you!