gamemake-eng / FMOD-lua

FMOD wrapper for the lua scripting language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FMOD lua

NOTE: fmod is not a free libary, get it here

The only fmod lua binding I could find was abandoned so I made one myself because I am big brain

How to use

Build the dll using make (windows only but I guess you can change it for linux)

After it creates fmodlua.dll copy the file into any lua project (LOVE, GXE, OTHER)

now you can include it in your projects!

-- NOTE: Make sure to include fmod.dll IN THE DIRECTORY OF THE EXE (where love, GXE, lua, etc is installed)
local fmod = require("fmodlua")
fmod.Init()
fmod.Play("music.wav")
fmod.Release()

You are free to contribute!

About

FMOD wrapper for the lua scripting language

License:MIT License


Languages

Language:C++ 92.0%Language:Makefile 8.0%