// Turnkey controls for the observation-deck composite: a simianlights `field` // plus an anamorphic-lensflare `flare`, each its own ControlForm. import { CompositeLayerControlPanel, ControlForm, ControlSection, type KaleidoscopeControls, } from '../../../src/components/preset-control-panel'; import { ANAMORPHIC_LENSFLARE_CONTROLS } from '../../shaders/anamorphic-lensflare/anamorphic-lensflare'; import { SIMIANLIGHTS_CONTROLS } from '../../shaders/simianlights/simianlights'; export function ObservationDeckControls({ uniforms, onPatch, disabled }: KaleidoscopeControls) { return ( <> ); }