Closed johnmarinelli closed 6 years ago
THREE.js uses an explicit type check for index as null in BufferGeometry. If it's null, it'll use a default setting. However, undefined throws an error.
index
null
undefined
Good catch, thank you for the PR :D
THREE.js uses an explicit type check for
index
as null in BufferGeometry. If it'snull
, it'll use a default setting. However,undefined
throws an error.