-
Notifications
You must be signed in to change notification settings - Fork 18
Home
Welcome to the FMODGMS wiki!
-
Open up the Terminal and install OpenAL:
sudo apt-get install libopenal1
This is required to run any game made with GameMaker:Studio. Currently, there is no way to disable OpenAL in favour of using FMOD Studio just by itself.
-
Download FMOD Studio Programmer’s API and Low Level Programmer API 1.09 for Linux from the FMOD website. Extract the contents of the tar file to a folder.
-
If you have a previous version of FMOD Studio installed, remove the old libraries typing into the Terminal:
cd /usr/local/lib/
sudo rm libfmod* -
Copy the x86 libraries to /usr/local/lib:
cd /path/to/fmodstudioapi110XXlinux/api/lowlevel/lib/x86
sudo cp -a libfmod* /usr/local/lib -
Add and export the library path:
export LD_LIBRARY_PATH=/usr/local/lib
sudo ldconfig -
Run the demo to verify that FMODGMS is working with it.