three.fbo-helper
Version:
FrameBuffer Object inspector for three.js
23 lines (12 loc) • 284 B
JavaScript
import { Object3D } from '../core/Object3D';
/**
* @author mrdoob / http://mrdoob.com/
*/
function Group() {
Object3D.call( this );
this.type = 'Group';
}
Group.prototype = Object.assign( Object.create( Object3D.prototype ), {
constructor: Group
} );
export { Group };