From 040ba82d102b3af4530adc931ce1d8040a7582f7 Mon Sep 17 00:00:00 2001 From: extrawurst Date: Sat, 1 Mar 2025 08:59:28 +0100 Subject: [PATCH] make shaded the default --- src/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index 527faa7..430aa11 100644 --- a/src/main.rs +++ b/src/main.rs @@ -59,10 +59,10 @@ fn main() { app.register_type::(); app.insert_resource(DebugVisuals { - unlit: true, + unlit: false, tonemapping: Tonemapping::None, - exposure: 0., - shadows: false, + exposure: 1., + shadows: true, }); app.add_plugins(DefaultPlugins.set(ImagePlugin { @@ -80,7 +80,7 @@ fn main() { }); app.insert_resource(AmbientLight { color: Color::WHITE, - brightness: 500., + brightness: 400., }); app.add_plugins(bevy_inspector_egui::quick::WorldInspectorPlugin::default());