You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to transform an 8GB OBJ file to GLTF. Below is the command used.
obj2gltf -i outputobj.obj -o building.gltf
Memory utilization goes up to 10GB in Task manager and throughs the below error. Added NODE_OPTIONS=--max-old-space-size=8192 in Environment Variables but no luck.
The text was updated successfully, but these errors were encountered:
@kaigalmane that's interesting... I assume that happens in the JSON stringify step. It's unusual for the JSON portion to get that large. Does the obj have a lot of object or group names?
One other thing to try is saving as a .glb (-i outputobj.obj -o building.glb -s) though I would expect it to hit the same error.
I am trying to transform an 8GB OBJ file to GLTF. Below is the command used.
obj2gltf -i outputobj.obj -o building.gltf
Memory utilization goes up to 10GB in Task manager and throughs the below error. Added
NODE_OPTIONS=--max-old-space-size=8192
in Environment Variables but no luck.The text was updated successfully, but these errors were encountered: