I'm set a Response Timeout in the Dialogue Manager's Input Settings to 5, but I'm need timeout only for one question in dialog. How to do this?
And second question
Where to redefine the type of display of the timer? For example two UISLider dispersing in different directions.
[SOLVED]Response Timeout only for one point in dialog
[SOLVED]Response Timeout only for one point in dialog
Last edited by Evgeny on Mon Mar 14, 2016 3:37 am, edited 1 time in total.
Re: Response Timeout only for one point in dialog
Hi,
(The "Delay({{end}})" tells the Dialogue System to wait for the correct amount of time based on the dialogue text.)
In the dialogue entry after the response menu, use SetTimeout(0):
In the dialogue entry before the response menu, use the SetTimeout() sequencer command. For example:Evgeny wrote:I'm set a Response Timeout in the Dialogue Manager's Input Settings to 5, but I'm need timeout only for one question in dialog. How to do this?
Code: Select all
SetTimeout(5); Delay({{end}})
In the dialogue entry after the response menu, use SetTimeout(0):
Code: Select all
SetTimeout(0); Delay({{end}})
Customize Assets/Dialogue System/Third Party Support/NGUI/Scripts/NGUI Dialogue UI/NGUI Dialogue Controls/NGUITimer.cs.Evgeny wrote:Where to redefine the type of display of the timer? For example two UISLider dispersing in different directions.