make shaded the default

This commit is contained in:
2025-03-01 08:59:28 +01:00
parent 774e7eb35b
commit 040ba82d10

View File

@@ -59,10 +59,10 @@ fn main() {
app.register_type::<DebugVisuals>(); app.register_type::<DebugVisuals>();
app.insert_resource(DebugVisuals { app.insert_resource(DebugVisuals {
unlit: true, unlit: false,
tonemapping: Tonemapping::None, tonemapping: Tonemapping::None,
exposure: 0., exposure: 1.,
shadows: false, shadows: true,
}); });
app.add_plugins(DefaultPlugins.set(ImagePlugin { app.add_plugins(DefaultPlugins.set(ImagePlugin {
@@ -80,7 +80,7 @@ fn main() {
}); });
app.insert_resource(AmbientLight { app.insert_resource(AmbientLight {
color: Color::WHITE, color: Color::WHITE,
brightness: 500., brightness: 400.,
}); });
app.add_plugins(bevy_inspector_egui::quick::WorldInspectorPlugin::default()); app.add_plugins(bevy_inspector_egui::quick::WorldInspectorPlugin::default());