From 1a680923f8f3698c05541c17da752d93cd90cccd Mon Sep 17 00:00:00 2001 From: Ioxcv12 <160195069+Ioxcv12@users.noreply.github.com> Date: Wed, 25 Jun 2025 02:55:44 -0700 Subject: [PATCH 1/2] Update KittopiaTech.cs - changed shortcut to Crtl Alt K --- src/KittopiaTech.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/KittopiaTech.cs b/src/KittopiaTech.cs index 032e322..c7d9575 100644 --- a/src/KittopiaTech.cs +++ b/src/KittopiaTech.cs @@ -27,7 +27,7 @@ void Start() void Update() { // Check if the user wants to open the UI - if (Input.GetKey(KeyCode.LeftControl) && Input.GetKeyDown(KeyCode.P)) + if (Input.GetKey(KeyCode.LeftControl) && Input.GetKeyDown(KeyCode.LeftAlt)) && Input.GetKeyDown(KeyCode.K)) { // Open or close the main window if (!PlanetSelector.Instance.IsOpen) @@ -49,4 +49,4 @@ void OnGUI() } } } -} \ No newline at end of file +} From 369eabed76698b0d87a3413a44925111a8973cae Mon Sep 17 00:00:00 2001 From: Ioxcv12 <160195069+Ioxcv12@users.noreply.github.com> Date: Sun, 13 Jul 2025 03:10:56 -0700 Subject: [PATCH 2/2] Added Crtl + P shortcut --- src/KittopiaTech.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/KittopiaTech.cs b/src/KittopiaTech.cs index c7d9575..56eea7f 100644 --- a/src/KittopiaTech.cs +++ b/src/KittopiaTech.cs @@ -27,7 +27,7 @@ void Start() void Update() { // Check if the user wants to open the UI - if (Input.GetKey(KeyCode.LeftControl) && Input.GetKeyDown(KeyCode.LeftAlt)) && Input.GetKeyDown(KeyCode.K)) + if (Input.GetKey(KeyCode.LeftControl) && Input.GetKeyDown(KeyCode.LeftAlt)) && Input.GetKeyDown(KeyCode.K) || (Input.GetKey(KeyCode.LeftControl) && (Input.GetKey(KeyCode.P))) { // Open or close the main window if (!PlanetSelector.Instance.IsOpen)