Bone.js 381 B

123456789101112131415161718
  1. /**
  2. * @author mikael emtinger / http://gomo.se/
  3. * @author alteredq / http://alteredqualia.com/
  4. * @author ikerr / http://verold.com
  5. */
  6. THREE.Bone = function ( belongsToSkin ) {
  7. THREE.Object3D.call( this );
  8. this.skin = belongsToSkin;
  9. this.type = 'Bone';
  10. };
  11. THREE.Bone.prototype = Object.create( THREE.Object3D.prototype );
  12. THREE.Bone.prototype.constructor = THREE.Bone;
粤ICP备19079148号