[Solved] Custom inputs for responses.
[Solved] Custom inputs for responses.
Hi there!! I'm trying to set custom inputs for the different answers but I am clueless on how to do it. I think that the solution is on autonumber but I don't know what to do with the format {0}. {1}. Any suggestion? Thanks!.
Last edited by Hertzu on Fri Jun 10, 2022 2:33 am, edited 1 time in total.
Re: Custom inputs for responses.
Hi,
If you want to set up autonumbering, inspect your dialogue UI's response menu panel. On the StandardUIMenuPanel component, tick Autonumber > Enabled. This will assign a number key starting from '1' to each response. If the player presses a number key, it will select the corresponding response.
The Format field lets you specify how the number key is added to the response menu text, where {0} is the number and {1} is the menu text.
For example, if the menu text is "Hello" and the Format is "{0}. {1}" then the menu button's text will be: "1. Hello"
If the Format is "[{0}] {1}", then the menu button's text will be: "[1] Hello"
If you want to set up autonumbering, inspect your dialogue UI's response menu panel. On the StandardUIMenuPanel component, tick Autonumber > Enabled. This will assign a number key starting from '1' to each response. If the player presses a number key, it will select the corresponding response.
The Format field lets you specify how the number key is added to the response menu text, where {0} is the number and {1} is the menu text.
For example, if the menu text is "Hello" and the Format is "{0}. {1}" then the menu button's text will be: "1. Hello"
If the Format is "[{0}] {1}", then the menu button's text will be: "[1] Hello"
Re: Custom inputs for responses.
Hi Tony,
Thanks for clarifying!!
Thanks for clarifying!!
Re: [Solved] Custom inputs for responses.
Happy to help!