Browse Source

Fix code style

Temdog007 6 years ago
parent
commit
dc87b91088
1 changed files with 3 additions and 1 deletions
  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 );
 
 		data.maxInstancedCount = this.maxInstancedCount;
@@ -43,6 +44,7 @@ InstancedBufferGeometry.prototype = Object.assign( Object.create( BufferGeometry
 		data.isInstancedBufferGeometry = true;
 
 		return data;
+
 	}
 
 } );