mirror of
https://github.com/bevyengine/bevy
synced 2024-11-24 21:53:07 +00:00
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.
This commit is contained in:
parent
6ad6eaa873
commit
9cfb4a187f
1 changed files with 1 additions and 1 deletions
|
@ -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"));
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue