UNPKG

three

Version:

JavaScript 3D library

21 lines (10 loc) 256 B
import { Object3D } from '../core/Object3D.js'; function Group() { Object3D.call( this ); this.type = 'Group'; } Group.prototype = Object.assign( Object.create( Object3D.prototype ), { constructor: Group, isGroup: true } ); export { Group };