Class in Yarn.Unity
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 continueActionType field.
When the configured input occurs, this component calls the UserRequestedViewAdvancement() method on its dialogueView.
The type of input that this component is listening for in order to signal that its dialogue view should advance.
The InputAction
that this component is listening for.
The keyboard key that this component is listening for.
An InputActionReference
that refers to the action that this component is listening for.
The type of input that this component is listening for.
The dialogue view that will be notified when the user performs the advance input (as configured by continueActionType and related fields.)
Configures whether Action should be enabled on start.
Gets the InputAction
configured by this DialogueAdvanceInput .
Field in DialogueAdvanceInput
The InputAction
that this component is listening for.
Use this continue action type when you want this component to use a configurable input action, but don't want to have to set up other actions in your project.
Field in DialogueAdvanceInput
An InputActionReference
that refers to the action that this component is listening for.
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 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
The dialogue view that will be notified when the user performs the advance input (as configured by continueActionType and related fields.)
When the input is performed, this dialogue view will have its UserRequestedViewAdvancement() method called.
Field in DialogueAdvanceInput
Configures whether Action should be enabled on start.
If this field is false
, the input action specified by Action will not be enabled by default, and will need to be enabled by your game's code.
Property in DialogueAdvanceInput
Gets the InputAction
configured by this DialogueAdvanceInput .
This methods returns the following potential values:
If continueActionType is InputSystemAction, this method returns continueAction.
If continueActionType is InputSystemActionFromAsset, this method returns continueActionReference's action.
If continueActionType is KeyCode or None, this method returns null
.
Enum in DialogueAdvanceInput
Inherits from System.Enum
The type of input that this component is listening for in order to signal that its dialogue view should advance.
The component is listening for the action configured in continueAction to be performed.
The component is listening for the action referred to by continueActionReference 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 dialogueView that it should advance.
Enumeration Member in ContinueActionType
The component is listening for the action configured in continueAction to be performed.
Enumeration Member in ContinueActionType
The component is listening for the action referred to by continueActionReference to be performed.
Enumeration Member in ContinueActionType
The component is listening for a key on the keyboard to be pressed.
Enumeration Member in ContinueActionType
The component is listening for no input. This component will not signal to dialogueView that it should advance.