瀏覽代碼

Fix code style

Temdog007 6 年之前
父節點
當前提交
dc87b91088
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/core/InstancedBufferGeometry.js

+ 3 - 1
src/core/InstancedBufferGeometry.js

@@ -35,7 +35,8 @@ InstancedBufferGeometry.prototype = Object.assign( Object.create( BufferGeometry
 
 
 	},
 	},
 
 
-	toJSON: function(){
+	toJSON: function () {
+
 		var data = BufferGeometry.prototype.toJSON.call( this );
 		var data = BufferGeometry.prototype.toJSON.call( this );
 
 
 		data.maxInstancedCount = this.maxInstancedCount;
 		data.maxInstancedCount = this.maxInstancedCount;
@@ -43,6 +44,7 @@ InstancedBufferGeometry.prototype = Object.assign( Object.create( BufferGeometry
 		data.isInstancedBufferGeometry = true;
 		data.isInstancedBufferGeometry = true;
 
 
 		return data;
 		return data;
+
 	}
 	}
 
 
 } );
 } );