UNPKG

planettech

Version:

Toolkit for creating real 3D planets that can be transtioned from ground to sky.

12 lines (9 loc) 267 B
import * as NODE from 'three/nodes'; import * as THREE from 'three'; import { CelestialBodies } from './celestialbodies.js'; export class Planet extends CelestialBodies{ constructor(params,name){ super(params,'Planet') this.name = name } }