This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {cloneElement, CSSProperties} from 'react'; | |
import {Helmet} from 'react-helmet'; | |
import seedrandom from 'seedrandom'; | |
/** Implements a weather system that displays particle effects on the page */ | |
export type WeatherConfig = { | |
/** Vertical direction. (default 1, or "top to bottom") */ | |
direction?: 1 | -1, | |
/** Minimum and maximum duration for particles to remain on screen. Determines vertical velocity. */ |