Browse Source

Fixed InstancedBufferGeometry.

Mr.doob 9 years ago
parent
commit
a8857eb9c6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core/InstancedBufferGeometry.js

+ 1 - 1
src/core/InstancedBufferGeometry.js

@@ -16,7 +16,7 @@ function InstancedBufferGeometry() {
 InstancedBufferGeometry.prototype = Object.create( BufferGeometry.prototype );
 InstancedBufferGeometry.prototype.constructor = InstancedBufferGeometry;
 
-InstancedBufferGeometry.prototype.isBufferGeometry = true;
+InstancedBufferGeometry.prototype.isInstancedBufferGeometry = true;
 
 InstancedBufferGeometry.prototype.addGroup = function ( start, count, instances ) {