UNPKG

@threlte/extras

Version:

Utilities, abstractions and plugins for your Threlte apps

15 lines (14 loc) 359 B
import type { Props } from '@threlte/core'; import type { PlaneGeometry } from 'three'; export interface BackdropGeometryProps extends Props<PlaneGeometry> { /** * Length of the flat floor section before the curve * @default 0.25 */ length?: number; /** * Number of segments * @default 20 */ segments?: number; }