Newer
Older
HuangJiPC / public / static / three / src / objects / Group.js
@zhangdeliang zhangdeliang on 21 Jun 184 bytes update
import { Object3D } from '../core/Object3D.js';

class Group extends Object3D {

	constructor() {

		super();

		this.isGroup = true;

		this.type = 'Group';

	}

}

export { Group };