Better path noise, better shadows

This commit is contained in:
Joshua Barretto 2019-06-23 00:56:42 +01:00
parent 41f647e862
commit 46fce696a2
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ impl Block {
match self.kind {
0 => None,
1 => Some(0.85),
_ => Some(1.0),
_ => Some(3.0),
}
}
}

View File

@ -142,7 +142,7 @@ impl<'a> Sampler for ColumnGen<'a> {
let (alt, ground) = if dist_to_path < 5.0 {
(alt - 1.5, Lerp::lerp(
Rgb::new(0.25, 0.15, 0.05),
Rgb::new(0.15, 0.075, 0.05),
Rgb::new(0.4, 0.25, 0.0),
marble,
))