Page 1 of 1

Quest Close Button

Posted: Wed Mar 12, 2025 5:03 pm
by jrose1184
i Tony,

Do you have a helper class for calling the close quest button.

Im using a controller but i need to so somthing when i close it.

i.e EventSystem.current.SetSelectedGameObject(buttons[0].gameObject);

Im not sure how to do this as im not modifing your script.

Re: Quest Close Button

Posted: Wed Mar 12, 2025 7:04 pm
by Tony Li
Hi,

You can write a simple script that calls:

Code: Select all

PixelCrushers.GameObjectUtility.FindFirstObjectByType<PixelCrushers.DialogueSystem.QuestLogWindow>().Close();
Or add a QuestLogWindowHotkey component to your button and connect the OnClick() event to its ToggleQuestLogWindow() method. This method will close the quest log window if it's open, or open it if it's closed.

Re: Quest Close Button

Posted: Thu Mar 13, 2025 9:02 am
by jrose1184
Thanks,

Unless im not understanding correctly i need a listen event to know when that button has been closed so i can do somthing on another script.

Re: Quest Close Button

Posted: Thu Mar 13, 2025 9:03 am
by jrose1184
I might close the button with a mouse click of input.getbutton.

Re: Quest Close Button

Posted: Thu Mar 13, 2025 9:07 am
by Tony Li
If you need to know when the quest log window has closed, you can hook into the OnClose() UnityEvent.

Re: Quest Close Button

Posted: Thu Mar 13, 2025 10:49 am
by jrose1184

Code: Select all


public QuestLogWindow questLogWindow;

 void OnDestroy()
    {
        if (questLogWindow != null)
        {
            questLogWindow.OnClose.RemoveListener(OnQuestLogClosed);
        }
    }
    
        private void Start()
    {
        if (questLogWindow != null)
        {
            questLogWindow.OnClose.AddListener(OnQuestLogClosed);
        }
    }
    
Hi can you tell me where the onclose is cling from please as wuestLogWindow.OnClose has no event. it throws a 'Cannot resolve symbol 'OnClose''

Re: Quest Close Button

Posted: Thu Mar 13, 2025 11:09 am
by Tony Li
Hi,

If you're connecting it in C# code, it's StandardUIQuestLogWindow.onClose with a lowercase 'o':

Code: Select all

questLogWindow.onClose.AddListener(OnQuestLogClosed);
...
questLogWindow.onClose.RemoveListener(OnQuestLogClosed);
It appears in the inspector as OnClose().

Re: Quest Close Button

Posted: Thu Mar 13, 2025 11:22 am
by jrose1184
Thanks Tony

Re: Quest Close Button

Posted: Thu Mar 13, 2025 1:02 pm
by Tony Li
Glad to help!