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
loadGltfUris currently runs out of file handles for models that reference lots of external resources. I have a model that references over 9000 images, and it fails with:
Unhandled rejection Error: EMFILE: too many open files
The text was updated successfully, but these errors were encountered:
Hmm. looks like this is because loadGltfUris uses fs instead of fs-extra. fs-extra under the hood wraps graceful-fs, which avoids EMFILE exceptions by queuing file requests or something.
loadGltfUris
currently runs out of file handles for models that reference lots of external resources. I have a model that references over 9000 images, and it fails with:The text was updated successfully, but these errors were encountered: