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());