From 2fc254ed79331ae5410204411eb8b3c5b4dd2ef5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A4r=20Winzell?= Date: Sat, 8 Sep 2018 11:35:10 -0700 Subject: [PATCH] Update example command-line switch --- npm/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/npm/README.md b/npm/README.md index deae6c7..c774a8c 100644 --- a/npm/README.md +++ b/npm/README.md @@ -32,7 +32,7 @@ For example: ```js 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 => { // yay, do what we will with our shiny new GLB file! },