From 88c682d0d17e25014bdde5aefe156b6b2ad7b178 Mon Sep 17 00:00:00 2001 From: Thom Bruce Date: Fri, 6 Oct 2023 06:35:38 +0100 Subject: [PATCH] change planet and star indicator colors to better match sprites --- src/planetary_system.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/planetary_system.rs b/src/planetary_system.rs index f551899..4aca8ad 100644 --- a/src/planetary_system.rs +++ b/src/planetary_system.rs @@ -75,7 +75,7 @@ fn setup(mut commands: Commands, sprites: Res) { AnimationTimer(Timer::from_seconds(0.1, TimerMode::Repeating)), Star {}, Indicated { - color: Color::YELLOW, + color: Color::ANTIQUE_WHITE, }, Name::new("Star"), )) @@ -92,7 +92,7 @@ fn setup(mut commands: Commands, sprites: Res) { 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?