[Bug] dialogueUI.Open() doesn't open my responses UI
Posted: Wed Mar 17, 2021 1:50 pm
Hi.
I have an issue where I close the dialogue UI in my script using
Then later I reopen it. But it doesn't open.
The game objects are re enabled in the Hierarchy view but nothing on screen.
How can I fix this? Thanks.
I have an issue where I close the dialogue UI in my script using
Code: Select all
DialogueManager.dialogueUI.Close();
Code: Select all
IEnumerator OpenAtEndOfFrame()
{
yield return new WaitForEndOfFrame();
DialogueManager.dialogueUI.Open();
}
How can I fix this? Thanks.