fireball/lib/objects/Bone.js
2018-12-25 17:29:22 +03:30

27 lines
389 B
JavaScript

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 };