MCPcopy Create free account
hub / github.com/TheOrcDev/github-creature / LightPillarProps

Interface LightPillarProps

components/light-pillar.tsx:6–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4import * as THREE from "three";
5
6interface LightPillarProps {
7 topColor?: string;
8 bottomColor?: string;
9 intensity?: number;
10 rotationSpeed?: number;
11 interactive?: boolean;
12 className?: string;
13 glowAmount?: number;
14 pillarWidth?: number;
15 pillarHeight?: number;
16 noiseIntensity?: number;
17 mixBlendMode?: React.CSSProperties["mixBlendMode"];
18 pillarRotation?: number;
19 opacity?: number;
20}
21
22const LightPillar: React.FC<LightPillarProps> = ({
23 topColor = "#5227FF",

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected