Edited parallax scale

master
Mark 2023-12-24 12:00:02 -08:00
parent e138981c8c
commit c29d5f520d
Signed by: Mark
GPG Key ID: C6D63995FE72FD80
1 changed files with 3 additions and 3 deletions

View File

@ -49,19 +49,19 @@ impl System {
s.bodies.push(Doodad { s.bodies.push(Doodad {
pos: (0.0, 0.0).into(), pos: (0.0, 0.0).into(),
sprite: "a0".to_owned(), sprite: "a0".to_owned(),
parallax: 4.0, parallax: 10.0,
height: 80.0, height: 80.0,
}); });
s.bodies.push(Doodad { s.bodies.push(Doodad {
pos: Polar { pos: Polar {
center: (0.0, 0.0).into(), center: (0.0, 0.0).into(),
radius: 200.0, radius: 5000.0,
angle: Deg { 0: 31.0 }, angle: Deg { 0: 31.0 },
} }
.to_cartesian(), .to_cartesian(),
sprite: "earth".to_owned(), sprite: "earth".to_owned(),
parallax: 2.0, parallax: 5.0,
height: 120.0, height: 120.0,
}); });