浏览代码

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 = Object.create( BufferGeometry.prototype );
 InstancedBufferGeometry.prototype.constructor = InstancedBufferGeometry;
 InstancedBufferGeometry.prototype.constructor = InstancedBufferGeometry;
 
 
-InstancedBufferGeometry.prototype.isBufferGeometry = true;
+InstancedBufferGeometry.prototype.isInstancedBufferGeometry = true;
 
 
 InstancedBufferGeometry.prototype.addGroup = function ( start, count, instances ) {
 InstancedBufferGeometry.prototype.addGroup = function ( start, count, instances ) {