Merge pull request #23 from JanGross/character_sheet_fix

unblocking mouse on character sheet close
This commit is contained in:
Amaan Shawkath
2023-07-09 16:06:18 +01:00
committed by GitHub

View File

@@ -49,6 +49,7 @@ public class CharacterSheet : MonoBehaviour
public void Action_Close() public void Action_Close()
{ {
PlayerController.Instance.cameraMovement = true; PlayerController.Instance.cameraMovement = true;
GameManager.Instance.uiManager.BlockInput(false);
gameObject.SetActive(false); gameObject.SetActive(false);
} }
} }