Browse Source

Merge pull request #6097 from makc/patch-1

missing type on Bone
Mr.doob 10 years ago
parent
commit
54f9d56a42
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/objects/Bone.js

+ 1 - 0
src/objects/Bone.js

@@ -10,6 +10,7 @@ THREE.Bone = function ( belongsToSkin ) {
 
 	this.skin = belongsToSkin;
 
+	this.type = 'Bone';
 };
 
 THREE.Bone.prototype = Object.create( THREE.Object3D.prototype );