From 56a9fd766d39466f2272598b7f0877f362c55630 Mon Sep 17 00:00:00 2001 From: hut Date: Sun, 17 Mar 2024 14:29:40 +0100 Subject: [PATCH] make the sun BRIGHT --- src/world.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world.rs b/src/world.rs index 68332dd..ebff055 100644 --- a/src/world.rs +++ b/src/world.rs @@ -90,7 +90,7 @@ pub fn setup( // Add THE SUN let hydrogenfusion_handle = materials.add(StandardMaterial { - emissive: Color::rgb_linear(2900.0, 2400.0, 2900.0), + emissive: Color::rgb_linear(1e6, 0.9e6, 1e6), ..default() }); let sphere_radius = 5000.0;