Skip to content

Commit

Permalink
Update readme and add gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaskello committed Apr 12, 2016
1 parent de0d8eb commit a3a2ccc
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea/
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# three-x3d-loader

ThreeJS Loader for the X3D format.
> Three.js Loader for the X3D format.
## Install

```
$ npm install --save three-x3d-loader
```

## Usage

```js
var THREE = require('three');
var X3DLoader = require('three-x3d-loader');
X3DLoader(THREE);

console.log(typeof THREE.X3DLoader);
//=> 'function'
```

0 comments on commit a3a2ccc

Please sign in to comment.