| 123456789101112131415161718 |
- /**
- * @author mikael emtinger / http://gomo.se/
- * @author alteredq / http://alteredqualia.com/
- * @author ikerr / http://verold.com
- */
- THREE.Bone = function ( belongsToSkin ) {
- THREE.Object3D.call( this );
- this.skin = belongsToSkin;
- this.type = 'Bone';
- };
- THREE.Bone.prototype = Object.create( THREE.Object3D.prototype );
- THREE.Bone.prototype.constructor = THREE.Bone;
|