A browser source overlay for winter vibes for your Live Streams or Videos
1// canvas size - I chose these sizes for 16:9 aspect ratio and really pixely 2export const CANVAS_WIDTH = 320; 3export const CANVAS_HEIGHT = 180; 4 5// number of collisions required to shift the snowlevel up 6export const FLOOR_RAISE_THRESHOLD = 100; 7 8// number of snowflakes to render 9export const MAX_PARTICAL_COUNT = 200; 10 11// minimum size of snowflake 12export const MIN_SIZE = 1; 13 14// maximum size of snowflake 15export const MAX_SIZE = 4; 16 17// maximum speed of a falling snowflake 18export const MAX_SPEED = 0.1; 19 20// minimum speed of a snowflake falling 21export const MIN_SPEED = 0.08;