@takram/three-atmosphere
Version:
A Three.js and R3F implementation of Precomputed Atmospheric Scattering
13 lines (12 loc) • 504 B
TypeScript
import { ThreeElement } from '@react-three/fiber';
import { ComponentPropsWithoutRef, FC, Ref } from 'react';
import { LightingMaskPass } from '../LightingMaskPass';
declare module '@react-three/fiber' {
interface ThreeElements {
lightingMaskPass: ThreeElement<typeof LightingMaskPass>;
}
}
export interface LightingMaskProps extends Omit<ComponentPropsWithoutRef<'lightingMaskPass'>, 'args'> {
ref?: Ref<LightingMaskPass>;
}
export declare const LightingMask: FC<LightingMaskProps>;