better error handling

This commit is contained in:
casperlamboo 2016-07-19 14:25:48 +02:00
parent 1b6a5966ca
commit 782c61ecdb

View File

@ -27,8 +27,7 @@ export default class extends EventDispatcher {
} else if (geometry.type.endsWith('Geometry')) {
geometry = geometry.clone();
} else {
console.warn('Geometry is not an instance of BufferGeometry or Geometry');
return;
throw 'Geometry is not an instance of BufferGeometry or Geometry';
}
if (matrix instanceof THREE.Matrix4) {