UNPKG

lingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

11 lines 353 B
import { boxGeometry } from "../../primitives/Cube"; import HelperPrimitive from "./HelperPrimitive"; export default class HelperCube extends HelperPrimitive { constructor(owner) { super(boxGeometry, owner); this.wireframe = true; this.emissive = true; this.opacity = 1; } } //# sourceMappingURL=HelperCube.js.map