You can click on characters whilst the journal is open
You can click on characters whilst selecting dialog options

Added sfx option to character data
This commit is contained in:
Amaan Shawkath
2023-07-09 13:25:47 +01:00
parent 6b5f52a71f
commit d00929c814
6 changed files with 39 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class UIManager : MonoBehaviour
{
public bool InputBlocked => m_blocked;
private bool m_blocked = false;
public void BlockInput(bool value)
{
m_blocked = value;
}
}