Remove obsolete buffer limit check

This commit is contained in:
Chris Cooper 2024-08-29 15:42:03 +10:00
parent ce0c36e281
commit 1468de3f00
2 changed files with 2 additions and 9 deletions

View File

@ -162,13 +162,6 @@ function writeEmbeddedBuffer(gltf) {
const buffer = gltf.buffers[0];
const source = buffer.extras._obj2gltf.source;
// Buffers larger than ~192MB cannot be base64 encoded due to a NodeJS limitation. Source: https://github.com/nodejs/node/issues/4266
if (source.length > 201326580) {
throw new RuntimeError(
"Buffer is too large to embed in the glTF. Use the --separate flag instead.",
);
}
buffer.uri = `data:application/octet-stream;base64,${source.toString(
"base64",
)}`;

View File

@ -1,6 +1,6 @@
{
"name": "obj2gltf",
"version": "3.1.6",
"version": "3.1.7",
"description": "Convert OBJ model format to glTF",
"license": "Apache-2.0",
"contributors": [
@ -72,4 +72,4 @@
"bin": {
"obj2gltf": "./bin/obj2gltf.js"
}
}
}