SetDialoguePanel & SetActive not working.
Posted: Wed Feb 16, 2022 9:04 pm
Hey all.
Just bought this today and have been experimenting around. One thing I am trying to do is delay the start of a conversation to a specific time (9s) and that includes hiding the entire UI in that 9s. Doing some research on these forums I tried to find a way to solve this, coming across this:
https://www.pixelcrushers.com/phpbb/vie ... art#p28978
Which I tried, but I couldn't get to work. Well, it'll delay, but the SetDialoguePanel doesn't work. After some more research I found to try this:
Try that, and the first two calls in the sequence work, but it wouldn't SetActive to true after.
So i'm at a loss. I'm sure i'm missing something obvious but hoping for some help.
Similirarly, is there a tutoril anywheres that shows how to use this system such as starting conversation withing C#?
Thank you!
Just bought this today and have been experimenting around. One thing I am trying to do is delay the start of a conversation to a specific time (9s) and that includes hiding the entire UI in that 9s. Doing some research on these forums I tried to find a way to solve this, coming across this:
https://www.pixelcrushers.com/phpbb/vie ... art#p28978
Code: Select all
SetDialoguePanel(false, immediate);
Delay(2);
SetDialoguePanel(true)@2
Code: Select all
SetActive(Dialogue Panel, false); Delay(9); SetActive(DialoguePanel);
So i'm at a loss. I'm sure i'm missing something obvious but hoping for some help.
Similirarly, is there a tutoril anywheres that shows how to use this system such as starting conversation withing C#?
Thank you!