From 8cb47041e8616d1fdb90ccfd5a16e83adc9a06fd Mon Sep 17 00:00:00 2001 From: _nebula <41904486+misternebula@users.noreply.github.com> Date: Mon, 14 Aug 2023 16:46:47 +0100 Subject: [PATCH] remove old taunts stuff --- QSB/Inputs/QSBInputManager.cs | 44 ----------------------------------- 1 file changed, 44 deletions(-) diff --git a/QSB/Inputs/QSBInputManager.cs b/QSB/Inputs/QSBInputManager.cs index 05150c7a..62aa90ec 100644 --- a/QSB/Inputs/QSBInputManager.cs +++ b/QSB/Inputs/QSBInputManager.cs @@ -5,50 +5,6 @@ namespace QSB.Inputs; public class QSBInputManager : MonoBehaviour, IAddComponentOnStart { - // TODO : finish instruments - disabled for 0.7.0 release - /* - public static event Action ChertTaunt; - public static event Action EskerTaunt; - public static event Action RiebeckTaunt; - public static event Action GabbroTaunt; - public static event Action FeldsparTaunt; - public static event Action ExitTaunt; - - public void Update() - { - if (Input.GetKey(KeyCode.T)) - { - // Listed order is from sun to dark bramble - if (Input.GetKeyDown(KeyCode.Alpha1)) - { - ChertTaunt?.Invoke(); - } - else if (Input.GetKeyDown(KeyCode.Alpha2)) - { - EskerTaunt?.Invoke(); - } - else if (Input.GetKeyDown(KeyCode.Alpha5)) - { - RiebeckTaunt?.Invoke(); - } - else if (Input.GetKeyDown(KeyCode.Alpha4)) - { - GabbroTaunt?.Invoke(); - } - else if (Input.GetKeyDown(KeyCode.Alpha3)) - { - FeldsparTaunt?.Invoke(); - } - } - - if (OWInput.GetValue(InputLibrary.moveXZ, InputMode.None) != Vector2.zero - || OWInput.GetValue(InputLibrary.jump, InputMode.None) != 0f) - { - ExitTaunt?.Invoke(); - } - } - */ - public static QSBInputManager Instance { get; private set; } public void Start()