Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Field in DialogueAdvanceInput
The type of input that this component is listening for.
ContinueActionType: The type of input that this component is listening for in order to signal that its dialogue view should advance.
Field in DialogueAdvanceInput
An InputActionReference
that refers to the action that this component is listening for.
This value is only used when continueActionType is InputSystemActionFromAsset.
Use this continue action type when you want this component to make use of an input action you've configured elsewhere in your project.
Field in DialogueAdvanceInput
The keyboard key that this component is listening for.
This value is only used when continueActionType is KeyCode.
Class in
Inherits from MonoBehaviour
A component that listens for user input, and uses it to notify a dialogue view that the user wishes to advance to the next step in the dialogue.
This class may be used with the Unity Input System, or the legacy Input Manager. The specific type of input it's looking for is configured via the field.
When the configured input occurs, this component calls the method on its .
Name | Description |
---|
Name | Description |
---|
Name | Description |
---|
Enumeration Member in ContinueActionType
The component is listening for a key on the keyboard to be pressed.
This input will only be used if the legacy Input Manager is enabled.
Enumeration Member in ContinueActionType
The component is listening for the action referred to by continueActionReference to be performed.
This input will only be used if the Input System is installed and enabled.
The type of input that this component is listening for in order to signal that its dialogue view should advance. |
The |
The keyboard key that this component is listening for. |
An |
The type of input that this component is listening for. |
The component is listening for the action configured in to be performed. |
The component is listening for the action referred to by to be performed. |
The component is listening for a key on the keyboard to be pressed. |
The component is listening for no input. This component will not signal to that it should advance. |
The dialogue view that will be notified when the user performs the advance input (as configured by and related fields.)
Configures whether should be enabled on start.
Gets the InputAction
configured by this .
Enumeration Member in ContinueActionType
The component is listening for no input. This component will not signal to dialogueView that it should advance.