Browse Source

missing type on Bone

makc 10 years ago
parent
commit
a66add5d9a
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 );