From de9f1b052ab4780b4a2b822c54d9ba716d734aad Mon Sep 17 00:00:00 2001 From: Tetro48 <76738929+Tetro48@users.noreply.github.com> Date: Sun, 31 Dec 2023 00:09:48 +0700 Subject: [PATCH 1/2] Refactored input naming --- scene/key_config.lua | 12 ++++++------ scene/stick_config.lua | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/scene/key_config.lua b/scene/key_config.lua index 4841464f..efa534cd 100644 --- a/scene/key_config.lua +++ b/scene/key_config.lua @@ -60,13 +60,13 @@ local input_naming = { --Game Inputs left = "Move Left", right = "Move Right", - up = "Hard/Sonic Drop", - down = "Soft/Sonic Drop", + up = "Hard Drop (Up)", + down = "Soft Drop (Down)", screenshot = "Screenshot", - rotate_left = "Rotate CCW 1", - rotate_left2 = "Rotate CCW 2", - rotate_right = "Rotate CW 1", - rotate_right2 = "Rotate CW 2", + rotate_left = "Rotate CCW [1]", + rotate_left2 = "Rotate CCW [2]", + rotate_right = "Rotate CW [1]", + rotate_right2 = "Rotate CW [2]", rotate_180 = "Rotate 180", hold = "Hold", retry = "Retry", diff --git a/scene/stick_config.lua b/scene/stick_config.lua index 72dab809..416ce19b 100644 --- a/scene/stick_config.lua +++ b/scene/stick_config.lua @@ -32,12 +32,12 @@ local input_naming = { menu_back = "Menu Back", left = "Move Left", right = "Move Right", - up = "Hard/Sonic Drop", - down = "Soft/Sonic Drop", - rotate_left = "Rotate CCW 1", - rotate_left2 = "Rotate CCW 2", - rotate_right = "Rotate CW 1", - rotate_right2 = "Rotate CW 2", + up = "Hard Drop (Up)", + down = "Soft Drop (Down)", + rotate_left = "Rotate CCW [1]", + rotate_left2 = "Rotate CCW [2]", + rotate_right = "Rotate CW [1]", + rotate_right2 = "Rotate CW [2]", rotate_180 = "Rotate 180", hold = "Hold", retry = "Retry", From 59137178c67a0b67d2c2890c9116930879c02fb1 Mon Sep 17 00:00:00 2001 From: Tetro48 <76738929+Tetro48@users.noreply.github.com> Date: Mon, 1 Jan 2024 12:10:40 +0700 Subject: [PATCH 2/2] Moved Screenshot in input naming table to an appropriate place --- scene/key_config.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/key_config.lua b/scene/key_config.lua index efa534cd..4a2f5a33 100644 --- a/scene/key_config.lua +++ b/scene/key_config.lua @@ -57,12 +57,12 @@ local input_naming = { load_state = "Load game state", secret = "???", fullscreen = "Toggle Fullscreen", + screenshot = "Screenshot", --Game Inputs left = "Move Left", right = "Move Right", up = "Hard Drop (Up)", down = "Soft Drop (Down)", - screenshot = "Screenshot", rotate_left = "Rotate CCW [1]", rotate_left2 = "Rotate CCW [2]", rotate_right = "Rotate CW [1]",