Skip to content

Commit

Permalink
Tweak example lighting
Browse files Browse the repository at this point in the history
  • Loading branch information
rparrett committed Mar 18, 2024
1 parent 365da2a commit 0c12060
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/states.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ fn setup_loading_screen(
commands.spawn(PointLightBundle {
point_light: PointLight {
shadows_enabled: true,
intensity: 48_000.,
intensity: 1_000_000.,
..default()
},
transform: Transform::from_xyz(3.0, 6.0, 5.0),
Expand All @@ -66,7 +66,7 @@ fn setup_loading_screen(

commands.spawn(PbrBundle {
mesh: meshes.add(Plane3d::default().mesh().size(10.0, 10.0)),
material: materials.add(Color::rgb(0.4, 0.4, 0.4)),
material: materials.add(Color::rgb(0.6, 0.6, 0.6)),
transform: Transform::from_xyz(0., -0.5, 0.),
..default()
});
Expand Down

0 comments on commit 0c12060

Please sign in to comment.