Page 1 of 1

can I have empty string node for this case?

Posted: Sun Nov 22, 2020 9:56 am
by fkkcloud
Hello,

I am showing a specific "name input window" on this StartNameSetter().
Reason why I did not put this in "Who are you?" is I want the player to "click" once before they see the NameSetter.

Any suggestion on doing this?
화면 캡처 2020-11-22 065326.png
화면 캡처 2020-11-22 065326.png (64.77 KiB) Viewed 180 times

Re: can I have empty string node for this case?

Posted: Sun Nov 22, 2020 10:15 am
by Tony Li
Hi,

That should be fine. Since there is no text, there is no need for @Message(Typed). I think you can simplify it to:

Code: Select all

StartNameSetter();
Continue@Message(DoneSetName)

Re: can I have empty string node for this case?

Posted: Sun Nov 22, 2020 10:33 am
by fkkcloud
Works perfectly.