fix holes with empty geometry

This commit is contained in:
casperlamboo 2017-11-29 15:22:27 +01:00
parent 823009a6ce
commit 042eb050b9
1 changed files with 1 additions and 0 deletions

View File

@ -85,6 +85,7 @@ export default class ShapesManager extends THREE.Object3D {
if (!solid && d3Visible) {
const hole = this._meshes[id].mesh._mesh;
const holeGeometry = new THREE.Geometry().fromBufferGeometry(hole.geometry);
if (holeGeometry.vertices.length === 0) continue;
const holeBSP = new THREE_BSP(holeGeometry);
if (!this._holes) {
this._holes = holeBSP;