File size: 463 Bytes
01488bc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { BlendFunction } from "postprocessing";

export const DEFAULT_CONFIG = {
  blend: 5,
  intensity: 2,
  force: 1.1,
  distortion: 0.4,
  curl: 1.9,
  radius: 0.3,
  swirl: 4,
  pressure: 0.8,
  densityDissipation: 0.96,
  velocityDissipation: 1.0,
  fluidColor: "#3300ff",
  backgroundColor: "#070410",
  showBackground: true,
  rainbow: false,
  dyeRes: 512,
  simRes: 128,
  blendFunction: BlendFunction.SET,
} as const;

export const REFRESH_RATE = 60;