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

@@ -21,6 +21,12 @@ public class AdventurerInteractable : MonoBehaviour
private void OnMouseDown()
{
if (GameManager.Instance.uiManager.InputBlocked)
return;
if (GameManager.Instance.dialogueController.DialogueInProgress)
return;
PlayerController.Instance.cameraMovement = false;
CharacterData character = CharacterManager.Instance.GetCharacterDataByName(m_name);
GameManager.Instance.dialogueController.DisplayCharacterText(character);