OSDN Git Service

three.jsをThirdPartyに追加
[webglgame/webgl_framework.git] / webglFramework / Thirdparty / three.js-master / src / objects / Group.js
1 import { Object3D } from '../core/Object3D';
2
3 /**
4  * @author mrdoob / http://mrdoob.com/
5  */
6
7 function Group() {
8
9         Object3D.call( this );
10
11         this.type = 'Group';
12
13 }
14
15 Group.prototype = Object.assign( Object.create( Object3D.prototype ), {
16
17         constructor: Group
18
19 } );
20
21
22 export { Group };