make shaded the default
This commit is contained in:
@@ -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());
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user