From 9cfb4a187f65c50d0a614ec6c7110b57bd3b577c Mon Sep 17 00:00:00 2001 From: Rob Parrett Date: Fri, 11 Oct 2024 08:35:34 -0700 Subject: [PATCH] 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. --- examples/3d/motion_blur.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/3d/motion_blur.rs b/examples/3d/motion_blur.rs index c62ac7c161be4..b5b030eda1996 100644 --- a/examples/3d/motion_blur.rs +++ b/examples/3d/motion_blur.rs @@ -246,7 +246,7 @@ fn setup_ui(mut commands: Commands) { p.spawn(TextSpan::default()); p.spawn(TextSpan::new("1/2: -/+ shutter angle (blur amount)\n")); p.spawn(TextSpan::new("3/4: -/+ sample count (blur quality)\n")); - p.spawn(TextSpan::new("3/4: -/+ sample count (blur quality)\n")); + p.spawn(TextSpan::new("Spacebar: cycle camera\n")); }); }