Skip to content

Commit

Permalink
Make banding example a better worst case
Browse files Browse the repository at this point in the history
  • Loading branch information
aevyrie committed Jul 11, 2022
1 parent e1f67aa commit b969bb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/stress_tests/color_banding.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ fn setup(
// light
commands.spawn_bundle(PointLightBundle {
point_light: PointLight {
intensity: 20.0,
intensity: 50.0,
shadows_enabled: false,
..default()
},
transform: Transform::from_xyz(0.0, 0.1, 0.0),
transform: Transform::from_xyz(0.0, 5.0, 0.0),
..default()
});
// camera
Expand Down

0 comments on commit b969bb7

Please sign in to comment.