From 9d19abb511e82351cbb1aaa5a820816cf770d44d Mon Sep 17 00:00:00 2001 From: Hazim Bin Ijaz Date: Tue, 8 Apr 2025 16:07:43 +0500 Subject: [PATCH] Changed controls --- Assets/Scenes/BossRoom.unity | 8 ++++---- Assets/Scripts/Gameplay/UserInput/ClientInputSender.cs | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Assets/Scenes/BossRoom.unity b/Assets/Scenes/BossRoom.unity index 9a3560e7..08511099 100644 --- a/Assets/Scenes/BossRoom.unity +++ b/Assets/Scenes/BossRoom.unity @@ -16337,7 +16337,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: F + m_text: Q m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: f50a897396f820e4a85fdbfa9ec1251b, type: 2} m_sharedMaterial: {fileID: 924789733308139946, guid: f50a897396f820e4a85fdbfa9ec1251b, type: 2} @@ -19212,11 +19212,11 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 1676734515771252668, guid: 0193228de87741d40a42e561901c9083, type: 3} propertyPath: m_LocalRotation.y - value: 0.28987613 + value: 0.28987607 objectReference: {fileID: 0} - target: {fileID: 1676734515771252668, guid: 0193228de87741d40a42e561901c9083, type: 3} propertyPath: m_LocalRotation.z - value: -0.18152039 + value: -0.18152031 objectReference: {fileID: 0} - target: {fileID: 1676734516302391364, guid: 0193228de87741d40a42e561901c9083, type: 3} propertyPath: m_UpdateMethod @@ -21744,7 +21744,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: C + m_text: T m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: f50a897396f820e4a85fdbfa9ec1251b, type: 2} m_sharedMaterial: {fileID: 924789733308139946, guid: f50a897396f820e4a85fdbfa9ec1251b, type: 2} diff --git a/Assets/Scripts/Gameplay/UserInput/ClientInputSender.cs b/Assets/Scripts/Gameplay/UserInput/ClientInputSender.cs index 5c1adf77..e5401285 100644 --- a/Assets/Scripts/Gameplay/UserInput/ClientInputSender.cs +++ b/Assets/Scripts/Gameplay/UserInput/ClientInputSender.cs @@ -586,11 +586,11 @@ namespace Unity.BossRoom.Gameplay.UserInput } ActivateAbilityIfAllowed(GameDataSource.Instance.FreezeThrowAbilityKey); } - if (Input.GetKeyDown(KeyCode.F)) // Vector Wall + if (Input.GetKeyDown(KeyCode.Q)) // Vector Wall { ActivateAbilityIfAllowed(GameDataSource.Instance.VectorFenceAbilityKey); } - if (Input.GetKeyDown(KeyCode.C)) // The Executioner + if (Input.GetKeyDown(KeyCode.T)) // The Executioner { if (m_ServerCharacter.IsCrow) { @@ -599,7 +599,7 @@ namespace Unity.BossRoom.Gameplay.UserInput } ActivateAbilityIfAllowed(GameDataSource.Instance.TheExecutionerKey); } - if (Input.GetKeyDown(KeyCode.V)) // Crow's Foresight + if (Input.GetKeyDown(KeyCode.Y)) // Crow's Foresight { if (!m_ServerCharacter.IsCrow) {