Spaces:
Running
Running
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 }; | |