From 25c404abc4011f4f7970fd5c94ed536aaf674fbc Mon Sep 17 00:00:00 2001 From: Amaan Shawkath Date: Sun, 9 Jul 2023 16:06:00 +0100 Subject: [PATCH] unblocking mouse on character sheet close --- Assets/Scripts/DialogueSystem/CharacterSheet.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Assets/Scripts/DialogueSystem/CharacterSheet.cs b/Assets/Scripts/DialogueSystem/CharacterSheet.cs index f8f88bc..240ac8d 100644 --- a/Assets/Scripts/DialogueSystem/CharacterSheet.cs +++ b/Assets/Scripts/DialogueSystem/CharacterSheet.cs @@ -49,6 +49,7 @@ public class CharacterSheet : MonoBehaviour public void Action_Close() { PlayerController.Instance.cameraMovement = true; + GameManager.Instance.uiManager.BlockInput(false); gameObject.SetActive(false); } }