Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit)

I created a simple AppleScript icon on the desktop to launch the game, modifying this can work for people. It opens a shell and launches the game UI. Open AppleScript Editor (in the Applications folder), and paste the following in (edit your home folder):

tell application "Terminal"
    activate
    do script "cd '/Users/dan/Library/Application Support/itch/apps/FPV Freerider Recharged' && open ./FPVFreerider_Recharged.app --args -screen-fullscreen 1 -screen-width 1920 -screen-height 1080"
end tell

Note that if you have a slower Macbook Pro (2014 or older) you might want to launch the game at 720p instead of 1080p, it's more responsive for me this way -- I have a mid-2012 retina running MacOS  High Sierra 10.13.4 and the below runs best so far:

tell application "Terminal"
    activate
    do script "cd '/Users/dan/Library/Application Support/itch/apps/FPV Freerider Recharged' && open ./FPVFreerider_Recharged.app --args -screen-fullscreen 1 -screen-width 1280 -screen-height 720"
end tell

(+1)

Glad you found the solution, thanks for sharing the information, I'm sure that will be of use if someone else has the same problem.