Make lights MUCH brighter

This commit is contained in:
numzero 2024-12-30 19:45:05 +03:00
parent bf62a59a0e
commit fe94dd68a2

View File

@ -22,7 +22,7 @@ pub fn distr<R: rand::Rng>() -> impl Fn(&mut R) -> SphereParams {
move |rgen| SphereParams {
origin: pos.sample3(rgen),
radius: 2.0f32.powf(rad.sample(rgen)),
alpha: if emit.sample(rgen) { 10.0 } else { 0.0 },
alpha: if emit.sample(rgen) { 100.0 } else { 0.0 },
glossiness: gloss.sample(rgen),
amplitudes: ampl.sample3(rgen),
frequencies: freq.sample3(rgen),