Unknown reason cause message not be going on
Re: Unknown reason cause message not be going on
In the original example scene, the Red Wizard changes from the right position (panel 0):
to the middle position (panel 2):
This sequence tells the Red Wizard and Green Wizard to change panels:
Is that what you want to happen?
to the middle position (panel 2):
This sequence tells the Red Wizard and Green Wizard to change panels:
Is that what you want to happen?
Re: Unknown reason cause message not be going on
Yes,That is what I want,but when I use my project,It would let the conversation stuck.
Re: Unknown reason cause message not be going on
Thank you for your patience with this.
What do you mean by stuck?
Is the conversation not progressing?
Are you talking about the issue where one line shows the UI elements while the previous line is hiding the same UI elements? If so, have you changed Visibility to Always From Start or Always Once Shown?
What do you mean by stuck?
Is the conversation not progressing?
Are you talking about the issue where one line shows the UI elements while the previous line is hiding the same UI elements? If so, have you changed Visibility to Always From Start or Always Once Shown?
Re: Unknown reason cause message not be going on
I tried to changed Visibility to Always From Start or Always Once Shown.that did not work to me in version 2.2.10.
I am sorry about my poor English.Hope you could forgive me that English is not my native language.
I am the one that should thank you for your patience.
Stuck means the problem in this reply's problem.the dialogue message would stop when using Hide animation.
After I said I send a e-mail with your website,the discuss all is talking about that(not the first problem,that problem maybe one day I would check about that and send a project again in the future.). So, if you can fix that e-mail's project file.That could also fix the problem in what I said.And then I used what you said in the reply's solutions.First solution worked to me,but I think that is not perfect one,so I tried the second what you said,but the way would let the panel always in the same place,that is not what I want,but I am afraid I misunderstand what you said in second solution,so I just asked whether I misunderstand or not.
Re: Unknown reason cause message not be going on
Hi,
I'll check out the project again and try to send you a fixed file.
I'll check out the project again and try to send you a fixed file.
Re: Unknown reason cause message not be going on
I can reproduce the situation in the original Animated Portrait Example. Now that I can reproduce it there, I will work on a solution tomorrow.
Re: Unknown reason cause message not be going on
Please import this package:
shortlin_2020-09-19.unitypackage
The subtitle panels use a small subclass of StandardUISubtitlePanel named SharedTextSubtitlePanel.
SharedTextSubtitlePanel allows subtitle panels to share the same text elements even when they use show/hide animations. Normally when a panel's hide animation is done, it hides the text elements. With this subclass, it doesn't hide the text element is another subtitle panel is using it.
shortlin_2020-09-19.unitypackage
The subtitle panels use a small subclass of StandardUISubtitlePanel named SharedTextSubtitlePanel.
SharedTextSubtitlePanel allows subtitle panels to share the same text elements even when they use show/hide animations. Normally when a panel's hide animation is done, it hides the text elements. With this subclass, it doesn't hide the text element is another subtitle panel is using it.
Re: Unknown reason cause message not be going on
Hi Tony ,Thank you.Tony Li wrote: ↑Sat Sep 19, 2020 9:39 am Please import this package:
shortlin_2020-09-19.unitypackage
The subtitle panels use a small subclass of StandardUISubtitlePanel named SharedTextSubtitlePanel.
SharedTextSubtitlePanel allows subtitle panels to share the same text elements even when they use show/hide animations. Normally when a panel's hide animation is done, it hides the text elements. With this subclass, it doesn't hide the text element is another subtitle panel is using it.
It worked.
But it would let the portratName Disappear in that problem conversation node.
Except that,everything is OK.
So I tried to modify your code:
I Change this code to this:portraitName.SetActive(value);
if (value == true || currentOwner == this)
{
subtitleText.SetActive(value);
}
The portraitName Appear in that conversation node.if (value == true || currentOwner == this)
{
portraitName.SetActive(value);
subtitleText.SetActive(value);
}
Re: Unknown reason cause message not be going on
Because you set the portraitName.SetActive(false)
when it should be true;
so I put it with "subtitleText.SetActive(value); " together