make shaded the default
This commit is contained in:
@@ -59,10 +59,10 @@ fn main() {
|
||||
|
||||
app.register_type::<DebugVisuals>();
|
||||
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());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user