lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
11 lines • 324 B
JavaScript
import { SphereGeometry } from "three";
import Primitive from "../core/Primitive";
export const sphereGeometry = new SphereGeometry(0.5);
class Sphere extends Primitive {
static componentName = "sphere";
constructor() {
super(sphereGeometry);
}
}
export default Sphere;
//# sourceMappingURL=Sphere.js.map