Bone.js 250 B

1234567891011121314151617181920
  1. import { Object3D } from '../core/Object3D.js';
  2. function Bone() {
  3. Object3D.call( this );
  4. this.type = 'Bone';
  5. }
  6. Bone.prototype = Object.assign( Object.create( Object3D.prototype ), {
  7. constructor: Bone,
  8. isBone: true
  9. } );
  10. export { Bone };
粤ICP备19079148号