mirror of
https://github.com/CesiumGS/obj2gltf.git
synced 2024-11-27 10:30:16 -05:00
Remove obsolete buffer limit check
This commit is contained in:
parent
ce0c36e281
commit
1468de3f00
@ -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",
|
||||||
)}`;
|
)}`;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "obj2gltf",
|
"name": "obj2gltf",
|
||||||
"version": "3.1.6",
|
"version": "3.1.7",
|
||||||
"description": "Convert OBJ model format to glTF",
|
"description": "Convert OBJ model format to glTF",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
|
Loading…
Reference in New Issue
Block a user