Bone.js 313 B

12345678910111213141516
  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. };
  10. THREE.Bone.prototype = Object.create( THREE.Object3D.prototype );
粤ICP备19079148号