UNPKG

polygonjs-engine

Version:

node-based webgl 3D engine https://polygonjs.com

14 lines (12 loc) 213 B
export class PolyLibsController { private _root: string | null = '/three/js/libs'; root() { return this._root; } setRoot(url: string | null) { if (url == '') { url = null; } this._root = url; } }