Răsfoiți Sursa

Fixed InstancedBufferGeometry.

Mr.doob 9 ani în urmă
părinte
comite
a8857eb9c6
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  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 ) {