Skip to content

Commit

Permalink
Remove duplicated instruction line in lighting example (bevyengine#…
Browse files Browse the repository at this point in the history
…16767)

# Objective

There are two of the same instruction in this example's instruction
text.

## Solution

Delete one

## Testing

`cargo run --example lighting`
  • Loading branch information
rparrett authored Dec 12, 2024
1 parent ae16a64 commit cca6a2b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion examples/3d/lighting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,6 @@ fn setup(
p.spawn(TextSpan::new("---------------\n"));
p.spawn(TextSpan::new("Arrow keys - Move objects\n"));
p.spawn(TextSpan::new("1/2 - Decrease/Increase aperture\n"));
p.spawn(TextSpan::new("Arrow keys - Move objects\n"));
p.spawn(TextSpan::new("3/4 - Decrease/Increase shutter speed\n"));
p.spawn(TextSpan::new("5/6 - Decrease/Increase sensitivity\n"));
p.spawn(TextSpan::new("R - Reset exposure"));
Expand Down

0 comments on commit cca6a2b

Please sign in to comment.