14 lines
251 B
JavaScript
14 lines
251 B
JavaScript
/**
|
|
* @author mrdoob / http://mrdoob.com/
|
|
*/
|
|
|
|
THREE.Group = function () {
|
|
|
|
THREE.Object3D.call( this );
|
|
|
|
this.type = 'Group';
|
|
|
|
};
|
|
|
|
THREE.Group.prototype = Object.create( THREE.Object3D.prototype );
|
|
THREE.Group.prototype.constructor = THREE.Group;
|