Group.js 256 B

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