diff --git a/source/import/importergltf.js b/source/import/importergltf.js index c79c534..02c4ab8 100644 --- a/source/import/importergltf.js +++ b/source/import/importergltf.js @@ -888,7 +888,7 @@ OV.ImporterGltf = class extends OV.ImporterBase { let bufferIndex = bufferView.buffer || 0; let buffer = this.bufferContents[bufferIndex]; - if (buffer === null) { + if (buffer === undefined || buffer === null) { return null; }