@takram/three-atmosphere
Version:
A Three.js and R3F implementation of Precomputed Atmospheric Scattering
12 lines (11 loc) • 566 B
TypeScript
import { ThreeElement } from '@react-three/fiber';
import { ComponentPropsWithRef } from 'react';
import { SunDirectionalLight } from '../SunDirectionalLight';
declare module '@react-three/fiber' {
interface ThreeElements {
sunDirectionalLight: ThreeElement<typeof SunDirectionalLight>;
}
}
export interface SunLightProps extends Omit<ComponentPropsWithRef<'sunDirectionalLight'>, 'target'> {
}
export declare const SunLight: import('react').ForwardRefExoticComponent<Omit<SunLightProps, "ref"> & import('react').RefAttributes<SunDirectionalLight>>;