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?
can I have empty string node for this case?
Re: can I have empty string node for this case?
Hi,
That should be fine. Since there is no text, there is no need for @Message(Typed). I think you can simplify it to:
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?
Works perfectly.