Skip to content

Commit 9cfb4a1

Browse files
authored
Fix motion_blur example instructions (#15852)
# Objective Fixes a mistake in the migration done in #15591. ## Solution Restore a line of instructions that was accidentally dropped. ## Testing `cargo run --example motion_blur` Tested that instructions make sense and text updates correctly when keys are pressed.
1 parent 6ad6eaa commit 9cfb4a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/3d/motion_blur.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ fn setup_ui(mut commands: Commands) {
246246
p.spawn(TextSpan::default());
247247
p.spawn(TextSpan::new("1/2: -/+ shutter angle (blur amount)\n"));
248248
p.spawn(TextSpan::new("3/4: -/+ sample count (blur quality)\n"));
249-
p.spawn(TextSpan::new("3/4: -/+ sample count (blur quality)\n"));
249+
p.spawn(TextSpan::new("Spacebar: cycle camera\n"));
250250
});
251251
}
252252

0 commit comments

Comments
 (0)