Group.js 304 B

123456789101112131415161718192021222324
  1. import { Object3D } from '../core/Object3D.js';
  2. /**
  3. * @author mrdoob / http://mrdoob.com/
  4. */
  5. function Group() {
  6. Object3D.call( this );
  7. this.type = 'Group';
  8. }
  9. Group.prototype = Object.assign( Object.create( Object3D.prototype ), {
  10. constructor: Group,
  11. isGroup: true
  12. } );
  13. export { Group };