mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Better path noise, better shadows
This commit is contained in:
parent
41f647e862
commit
46fce696a2
@ -28,7 +28,7 @@ impl Block {
|
||||
match self.kind {
|
||||
0 => None,
|
||||
1 => Some(0.85),
|
||||
_ => Some(1.0),
|
||||
_ => Some(3.0),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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,
|
||||
))
|
||||
|
Loading…
Reference in New Issue
Block a user