How to Open and Close the Quest Log from Script
Posted: Mon Apr 10, 2023 9:31 pm
Hi,
I edited the Basic Prefab Quest Log Window from the Dialogue Manager prefabs, and I need to program buttons in my game's UI to open and close the Quest Window so the player can click through the UI's other windows.
I tried this because I read it on the Quests documentation, but it's not working,
Is there a method I can call to open and close it?
Thanks for any help!
I edited the Basic Prefab Quest Log Window from the Dialogue Manager prefabs, and I need to program buttons in my game's UI to open and close the Quest Window so the player can click through the UI's other windows.
I tried this because I read it on the Quests documentation, but it's not working,
Code: Select all
public void OpenQuestsPage()
{
inventoryUI.Hide();
contactsUI.Hide();
DialogueManager.Open();
}
Thanks for any help!