https://github.com/psigen/node-horde3d
node.js bindings for Horde3D rendering engine
https://github.com/psigen/node-horde3d
Last synced: about 1 year ago
JSON representation
node.js bindings for Horde3D rendering engine
- Host: GitHub
- URL: https://github.com/psigen/node-horde3d
- Owner: psigen
- License: bsd-3-clause
- Created: 2014-02-15T01:58:23.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-02-17T07:25:47.000Z (over 12 years ago)
- Last Synced: 2023-04-08T04:47:46.264Z (about 3 years ago)
- Language: C
- Size: 2.62 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
node-horde3d
============
Node.js bindings to Horde3D through [node-ffi].
These bindings are automatically generated via [node-ffi-generate] from the Horde3D API header file (`Bullet-C-Api.h`). They have a 1:1 mapping with the existing Horde3D API documentation.
* [Documentation for the Horde3D API]
Installing this library via NPM
-------------------------------
Currently, this library is not published to `npm`. However, you can use it in npm projects by adding it to your `package.json` using a git url:
```javascript
"dependencies": {
"horde3d": "git://github.com/psigen/node-horde3d.git"
}
```
Example Usage
-------------
```javascript
var h3d = require('horde3d').horde3d;
var sdk = h3d.Horde3DInit;
...
console.log('Doing Horde3D stuff...');
...
h3d.DeleteSdk(sdk);
```
Compilation notes
-----------------
* Nothing weird just yet.
[node-ffi]: https://github.com/rbranson/node-ffi
[node-ffi-generate]: https://github.com/tjfontaine/node-ffi-generate
[Documentation for the Horde3D API]: http://horde3d.org/docs/manual.html