mylingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
10 lines (9 loc) • 379 B
TypeScript
import { SphereGeometry } from "three";
import Primitive from "../core/Primitive";
import sphereShape from "../core/PhysicsObjectManager/cannon/shapes/sphereShape";
export declare const sphereGeometry: SphereGeometry;
export default class Sphere extends Primitive {
static componentName: string;
protected _physicsShape: typeof sphereShape;
constructor();
}