Class DialogueTask
Task that run a dialogue UI entity and display conversation
Constructors
DialogueTask()
Declaration
public DialogueTask()
Methods
EndConversation()
Stop current conversation
Declaration
public static void EndConversation()
FrameUpdate()
This function is used to handle the internal logic.
Declaration
public override TaskResult FrameUpdate()
Returns
Type | Description |
---|---|
TaskResult | "Continue" if the task should keep on after this frame. "End" if the task should end. |
Overrides
StartConversation<D>(string)
Start conversation from given name
Declaration
public static void StartConversation<D>(string globalName) where D : DialogueUI
Parameters
Type | Name | Description |
---|---|---|
string | globalName | System name of the conversation |
Type Parameters
Name | Description |
---|---|
D | Type of the dialogue UI entity |