Go to file
Robert Taglang dc1a1976db Last few tweaks 2016-07-22 16:17:27 -04:00
.idea Instead of -e command line flag, use -s or -t 2016-07-20 14:23:58 -04:00
TypeScriptDefinitions Updated project for publishing 2016-07-08 18:10:18 -04:00
bin Changed callback code to promises 2016-07-22 14:09:13 -04:00
doc Updated readme 2015-10-18 23:51:01 -04:00
lib Last few tweaks 2016-07-22 16:17:27 -04:00
specs Last few tweaks 2016-07-22 16:17:27 -04:00
.gitignore Updated .ignore files 2016-07-20 13:25:54 -04:00
.jshintrc Updated project for publishing 2016-07-08 18:10:18 -04:00
.npmignore Updated .ignore files 2016-07-20 13:25:54 -04:00
.travis.yml Updated project for publishing 2016-07-08 18:10:18 -04:00
CHANGES.md Update to version 0.1.1 2016-07-21 17:23:53 -04:00
LICENSE.md Updated project for publishing 2016-07-08 18:10:18 -04:00
README.md Last few tweaks 2016-07-22 16:17:27 -04:00
gulpfile.js Updated project for publishing 2016-07-08 18:10:18 -04:00
index.js Upgrade for gltf-pipeline 2016-06-10 17:43:30 -04:00
package.json Changed callback code to promises 2016-07-22 14:09:13 -04:00

README.md

OBJ2GLTF

Convert OBJ assets to glTF 1.0.

Getting Started

Install Node.js if you don't already have it, and then:

npm install --save obj2gltf

Using obj2gltf as a library:

var obj2gltf = require('obj2gltf');
var convert = obj2gltf.convert;
var options = {
    embedImage : false // Don't embed image in the converted glTF
}
convert('model.obj', 'model.gltf', options)
    .then(function() {
        console.log('Converted model');
    });

Using obj2gltf as a command-line tool:

node bin/obj2gltf.js model.obj

node bin/obj2gltf.js model.obj model.gltf

node bin/obj2gltf.js -i model.obj -o model.gltf

node bin/obj2gltf.js -i model.obj -o model.gltf -s

Usage

###Command line flags:

Flag Description Required
-i Path to the input OBJ file. Yes
-o Directory or filename for the exported glTF file. No
-b Output binary glTF. No, default false
-s Writes out separate geometry/animation data files, shader files, and textures instead of embedding them in the glTF file. No, default false
-t Write out separate textures only. No, default false
--ao Apply ambient occlusion to the converted model. No, default false
-h Display help No

Contributions

Pull requests are appreciated. Please use the same Contributor License Agreement (CLA) used for Cesium.


Developed by the Cesium team.