UNPKG

@shopware-ag/dive

Version:

Shopware Spatial Framework

15 lines (14 loc) 333 B
import { ColorRepresentation, Mesh } from 'three'; /** * A basic floor geometry. * * Can change the color and visibility of the floor. * * @module */ export declare class DIVEFloor extends Mesh { isFloor: true; constructor(); SetVisibility(visible: boolean): void; SetColor(color: ColorRepresentation): void; }