From fd6e98688d4b03083d67906de374faa767738c50 Mon Sep 17 00:00:00 2001 From: Sean Lilley Date: Mon, 26 Aug 2019 07:56:03 -0400 Subject: [PATCH] Fix default value in doc --- lib/obj2gltf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/obj2gltf.js b/lib/obj2gltf.js index c2f9b4d..cdb57e8 100644 --- a/lib/obj2gltf.js +++ b/lib/obj2gltf.js @@ -35,7 +35,7 @@ module.exports = obj2gltf; * @param {String} [options.overridingTextures.emissiveTexture] Path to the emissive texture. * @param {String} [options.overridingTextures.alphaTexture] Path to the alpha texture. * @param {String} [options.inputUpAxis='Y'] Up axis of the obj. Choices are 'X', 'Y', and 'Z'. - * @param {String} [options.outputUpAxis='Z'] Up axis of the converted glTF. Choices are 'X', 'Y', and 'Z'. + * @param {String} [options.outputUpAxis='Y'] Up axis of the converted glTF. Choices are 'X', 'Y', and 'Z'. * @param {Logger} [options.logger] A callback function for handling logged messages. Defaults to console.log. * @param {Writer} [options.writer] A callback function that writes files that are saved as separate resources. * @param {String} [options.outputDirectory] Output directory for writing separate resources when options.writer is not defined.