소스 검색

Fixed InstancedBufferGeometry.

Mr.doob 9 년 전
부모
커밋
a8857eb9c6
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 ) {