Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gamemake-eng/fmod-lua

FMOD wrapper for the lua scripting language
https://github.com/gamemake-eng/fmod-lua

Last synced: about 6 hours ago
JSON representation

FMOD wrapper for the lua scripting language

Awesome Lists containing this project

README

        

# FMOD lua

NOTE: fmod is not a free libary, get it [here](https://www.fmod.com/)

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](https://github.com/gamemake-eng/GXE), OTHER)

now you can include it in your projects!

```lua
-- 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!