Skip to content

Commit

Permalink
change planet and star indicator colors to better match sprites
Browse files Browse the repository at this point in the history
  • Loading branch information
thombruce committed Oct 6, 2023
1 parent 0349863 commit 88c682d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/planetary_system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ fn setup(mut commands: Commands, sprites: Res<SpriteAssets>) {
AnimationTimer(Timer::from_seconds(0.1, TimerMode::Repeating)),
Star {},
Indicated {
color: Color::YELLOW,
color: Color::ANTIQUE_WHITE,
},
Name::new("Star"),
))
Expand All @@ -92,7 +92,7 @@ fn setup(mut commands: Commands, sprites: Res<SpriteAssets>) {
AnimationTimer(Timer::from_seconds(0.1, TimerMode::Repeating)),
Planet {},
Indicated {
color: Color::ORANGE_RED,
color: Color::LIME_GREEN,
},
Orbit {
semi_major_axis: 500.0 / 2.0, // Divide by parent scale?
Expand Down

0 comments on commit 88c682d

Please sign in to comment.