@shopware-ag/dive
Version:
Shopware Spatial Framework
15 lines (14 loc) • 353 B
TypeScript
import { ColorRepresentation, Mesh } from 'three/webgpu';
/**
* A basic floor geometry.
*
* Can change the color and visibility of the floor.
*
* @module
*/
export declare class DIVEFloor extends Mesh {
readonly isDIVEFloor: true;
constructor();
setVisibility(visible: boolean): void;
setColor(color: ColorRepresentation): void;
}