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

class Bone extends Object3D {

	constructor() {

		super();

		this.isBone = true;

		this.type = 'Bone';

	}

}

export { Bone };