Remove buffer length limit

This commit is contained in:
Oksana Tunik 2024-08-28 08:52:07 +10:00
parent ce0c36e281
commit 378bdc22c4
1 changed files with 0 additions and 7 deletions

View File

@ -162,13 +162,6 @@ function writeEmbeddedBuffer(gltf) {
const buffer = gltf.buffers[0]; const buffer = gltf.buffers[0];
const source = buffer.extras._obj2gltf.source; 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( buffer.uri = `data:application/octet-stream;base64,${source.toString(
"base64", "base64",
)}`; )}`;