UNPKG

threepipe

Version:

A modern 3D viewer framework built on top of three.js, written in TypeScript, designed to make creating high-quality, modular, and extensible 3D experiences on the web simple and enjoyable.

18 lines 499 B
import { Object3D } from 'three'; import { iObjectCommons } from './iObjectCommons'; export class Object3D2 extends Object3D { /** * @deprecated use `this` instead */ get modelObject() { return this; } constructor() { super(); this.assetType = 'model'; this.setDirty = iObjectCommons.setDirty; this.refreshUi = iObjectCommons.refreshUi; iObjectCommons.upgradeObject3D.call(this); } } //# sourceMappingURL=Object3D2.js.map