From d3df91f40ca5891369a1361b517b8e81443826c3 Mon Sep 17 00:00:00 2001 From: aviac Date: Thu, 1 Feb 2024 07:38:04 +0100 Subject: [PATCH] chore(examples): consistent user facing texts Authored-by: RobWalt --- examples/2d/2d_gizmos.rs | 2 +- examples/3d/3d_gizmos.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/2d/2d_gizmos.rs b/examples/2d/2d_gizmos.rs index 19f5e68bf33b6..5625f0c93f2d4 100644 --- a/examples/2d/2d_gizmos.rs +++ b/examples/2d/2d_gizmos.rs @@ -73,7 +73,7 @@ fn setup(mut commands: Commands, asset_server: Res) { "Hold 'Left' or 'Right' to change the line width of straight gizmos\n\ Hold 'Up' or 'Down' to change the line width of round gizmos\n\ Press '1' or '2' to toggle the visibility of straight gizmos or round gizmos\n\ - Press 'k/j' to cycle through primitives rendered with gizmos", + Press 'K' or 'J' to cycle through primitives rendered with gizmos", TextStyle { font: asset_server.load("fonts/FiraMono-Medium.ttf"), font_size: 24., diff --git a/examples/3d/3d_gizmos.rs b/examples/3d/3d_gizmos.rs index f44b76a072d62..d4a69362437f1 100644 --- a/examples/3d/3d_gizmos.rs +++ b/examples/3d/3d_gizmos.rs @@ -122,8 +122,8 @@ fn setup( Hold 'Up' or 'Down' to change the line width of round gizmos\n\ Press '1' or '2' to toggle the visibility of straight gizmos or round gizmos\n\ Press 'A' to show all AABB boxes\n\ - Press 'k/j' to cycle through primitives rendered with gizmos\n\ - Press 'h/l' to decrease/increase the amount of segments in the primitives", + Press 'K' or 'J' to cycle through primitives rendered with gizmos\n\ + Press 'H' or 'L' to decrease/increase the amount of segments in the primitives", TextStyle { font_size: 20., ..default()