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