1234567891011121314151617181920212223242526 |
- import { Object3D } from '../core/Object3D.js';
- /**
- * @author mikael emtinger / http://gomo.se/
- * @author alteredq / http://alteredqualia.com/
- * @author ikerr / http://verold.com
- */
- function Bone() {
- Object3D.call( this );
- this.type = 'Bone';
- }
- Bone.prototype = Object.assign( Object.create( Object3D.prototype ), {
- constructor: Bone,
- isBone: true
- } );
- export { Bone };
|