Update example command-line switch

This commit is contained in:
Pär Winzell 2018-09-08 11:35:10 -07:00 committed by GitHub
parent 9c84e14ddc
commit 2fc254ed79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ For example:
```js ```js
const convert = require('fbx2gltf'); const convert = require('fbx2gltf');
convert('path/to/some.fbx', 'path/to/target.glb', ['--khr-materials-common']).then( convert('path/to/some.fbx', 'path/to/target.glb', ['--khr-materials-unlit']).then(
destPath => { destPath => {
// yay, do what we will with our shiny new GLB file! // yay, do what we will with our shiny new GLB file!
}, },