Added close button to character sheet - oooopsies

This commit is contained in:
Amaan Shawkath
2023-07-09 10:06:01 +01:00
parent b8bb233eb0
commit d2bea3814a
2 changed files with 355 additions and 2 deletions

View File

@@ -45,4 +45,10 @@ public class CharacterSheet : MonoBehaviour
{
return m_lines.ContainsKey(lineText);
}
public void Action_Close()
{
PlayerController.Instance.cameraMovement = true;
gameObject.SetActive(false);
}
}