Group.js 251 字节
Newer Older
M
Mr.doob 已提交
1 2 3 4 5 6 7 8
/**
 * @author mrdoob / http://mrdoob.com/
 */

THREE.Group = function () {

	THREE.Object3D.call( this );

9 10
	this.type = 'Group';

M
Mr.doob 已提交
11 12 13
};

THREE.Group.prototype = Object.create( THREE.Object3D.prototype );
M
Mr.doob 已提交
14
THREE.Group.prototype.constructor = THREE.Group;