https://github.com/extrawurst/derelictfmod
Dynamic bindings of the fmod sound library in the D programming language
https://github.com/extrawurst/derelictfmod
Last synced: 4 months ago
JSON representation
Dynamic bindings of the fmod sound library in the D programming language
- Host: GitHub
- URL: https://github.com/extrawurst/derelictfmod
- Owner: extrawurst
- License: mit
- Created: 2015-05-03T08:29:35.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-03-17T21:35:49.000Z (over 8 years ago)
- Last Synced: 2025-09-25T19:45:46.995Z (9 months ago)
- Language: D
- Homepage: http://code.dlang.org/packages/derelict-fmod
- Size: 166 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
DerelictFmod [](https://travis-ci.org/Extrawurst/DerelictFmod)
============
Note:
Supports fmod version 1.10.00
A dynamic binding to [Fmod](http://www.fmod.org/) low level api and fmodstudio api (c-api) for the D Programming Language.
For information on how to build DerelictFmod and link it with your programs, please see the post [Using Derelict](https://derelictorg.github.io/using.html) at the The One With D.
See more detailed example app [here](source/app.d).
Just initializing of the bindings:
```D
import derelict.fmod.fmod;
void main() {
// Load the Fmod library.
DerelictFmod.load();
// Load the Fmod studio library.
DerelictFmodStudio.load();
// Now Fmod functions can be called.
...
}
```
Note: Do not forget to download the official fmod binaries (shared libraries).