Page 4 of 6
Re: Response Menu Sequence delay
Posted: Sun Jan 10, 2021 8:59 pm
by Tony Li
Hi,
What happens if you put that in the <START> node instead? For example:
Code: Select all
required SetPanel(SCENE_EVENT, 3);
Continue()
Re: Response Menu Sequence delay
Posted: Sun Jan 10, 2021 10:59 pm
by fkkcloud
Still the same.
I removed the c# code line and just put that in the Start Node as well. no luck.
Re: Response Menu Sequence delay
Posted: Mon Jan 11, 2021 12:35 pm
by fkkcloud
Any update on this? "bumping!"
Re: Response Menu Sequence delay
Posted: Mon Jan 11, 2021 1:21 pm
by Tony Li
I will set up an example scene today to try to reproduce the issue.
Re: Response Menu Sequence delay
Posted: Mon Jan 11, 2021 9:14 pm
by Tony Li
Hi,
Here's a patch:
DS_SetDialoguePanelPatch_2021-01-11.unitypackage
This update will be in version 2.2.15 also.
Explanation: In version 2.2.14, hiding the dialogue UI clears its cache of overridden panel assignments. In this patch and version 2.2.15+, the cache is only cleared when the conversation actually ends.
Re: Response Menu Sequence delay
Posted: Mon Jan 11, 2021 10:38 pm
by fkkcloud
Thank you so much! Tested it and works now.
Re: Response Menu Sequence delay
Posted: Tue Jan 12, 2021 8:15 am
by Tony Li
Glad to help!
Re: Response Menu Sequence delay
Posted: Wed Jan 27, 2021 1:18 am
by fkkcloud
There is one problem on this.
It seems like the next node to the player's response menu node that is calling below Sequence Command does does trigger the
briefly show/hide the panel only when its Actor is not found in the scene at all.
Code: Select all
HidePanel(1);
SetDialoguePanel(false);
Continue()@2;
required SetDialoguePanel(true)@2;
Basically, the Actor of the next node is a
narrator or
SCENE_EVENT which is not meant to have any actor/gameObject in the scene because it is plain text node/panel.
- 1.png (17.24 KiB) Viewed 1386 times
Re: Response Menu Sequence delay
Posted: Wed Jan 27, 2021 8:55 am
by Tony Li
Hi,
Can you please send a
reproduction project to tony (at) pixelcrushers.com?
Re: Response Menu Sequence delay
Posted: Wed Jan 27, 2021 11:39 am
by fkkcloud
Okay, sent it!
Unity version is 2019.4.17f1 LTS btw.