CesiumGS / obj2gltf

Convert OBJ assets to glTF
Apache License 2.0
1.71k stars 307 forks source link

It doesn't bring any errors. but it can't get results #138

Open liyihongcug opened 6 years ago

liyihongcug commented 6 years ago

node bin\obj2gltf.js -i ../objxin/xm.obj -o -s ../gltfxin/xm.gltf Total: 96916.666ms

It doesn't bring any errors. but it can't get results.

xm.obj is 586M.

lilleyse commented 6 years ago

Try rearranging your command so that the output path directly follows -o. node bin\obj2gltf.js -i ../objxin/xm.obj -o ../gltfxin/xm.gltf -s

The file from your previous run probably got saved in the root directory as ..gltf.

I opened a PR to detect cases like this: https://github.com/AnalyticalGraphicsInc/obj2gltf/pull/139