Browse Source

Bone: Clean up.

Mr.doob 9 years ago
parent
commit
8e5c48ccdd
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/objects/Bone.js

+ 3 - 3
src/objects/Bone.js

@@ -18,11 +18,11 @@ THREE.Bone.prototype = Object.create( THREE.Object3D.prototype );
 THREE.Bone.prototype.constructor = THREE.Bone;
 
 THREE.Bone.prototype.copy = function ( source ) {
-	
+
 	THREE.Object3D.prototype.copy.call( this, source );
-	
+
 	this.skin = source.skin;
-	
+
 	return this;
 
 };