@@ -84,13 +84,13 @@ public enum InputActionPhase
84
84
///
85
85
/// By default, an action is started as soon as a control moves away from its default value. This is
86
86
/// the case for both <see cref="InputActionType.Button"/> actions (which, however, does not yet have to mean
87
- /// that the button press threshold has been reached; see <see cref="InputSettings.defaultButtonPressPoint"/>)
87
+ /// that the button press threshold has been reached; refer to <see cref="InputSettings.defaultButtonPressPoint"/>)
88
88
/// and <see cref="InputActionType.Value"/> actions. <see cref="InputActionType.PassThrough"/> does not use
89
89
/// the <c>Started</c> phase and instead goes straight to <see cref="Performed"/>.
90
90
///
91
91
/// For <see cref="InputActionType.Value"/> actions, <c>Started</c> will immediately be followed by <see cref="Performed"/>.
92
92
///
93
- /// Note that interactions (see <see cref="IInputInteraction"/>) can alter how an action does or does not progress through
93
+ /// Note that interactions (refer to <see cref="IInputInteraction"/>) can alter how an action does or does not progress through
94
94
/// the phases.
95
95
/// </summary>
96
96
Started ,
@@ -99,11 +99,11 @@ public enum InputActionPhase
99
99
/// The action has been performed. Leads to <see cref="InputAction.performed"/> getting called.
100
100
///
101
101
/// By default, a <see cref="InputActionType.Button"/> action performs when a control crosses the button
102
- /// press threshold (see <see cref="InputSettings.defaultButtonPressPoint"/>), a <see cref="InputActionType.Value"/>
102
+ /// press threshold (refer to <see cref="InputSettings.defaultButtonPressPoint"/>), a <see cref="InputActionType.Value"/>
103
103
/// action performs on any value change that isn't the default value, and a <see cref="InputActionType.PassThrough"/>
104
104
/// action performs on any value change including going back to the default value.
105
105
///
106
- /// Note that interactions (see <see cref="IInputInteraction"/>) can alter how an action does or does not progress through
106
+ /// Note that interactions (refer to <see cref="IInputInteraction"/>) can alter how an action does or does not progress through
107
107
/// the phases.
108
108
///
109
109
/// For a given action, finding out whether it was performed in the current frame can be done with <see cref="InputAction.WasPerformedThisFrame"/>.
@@ -120,14 +120,13 @@ public enum InputActionPhase
120
120
/// The action has stopped. Leads to <see cref="InputAction.canceled"/> getting called.
121
121
///
122
122
/// By default, a <see cref="InputActionType.Button"/> action cancels when a control falls back below the button
123
- /// press threshold (see <see cref="InputSettings.defaultButtonPressPoint"/>) and a <see cref="InputActionType.Value"/>
123
+ /// press threshold (refer to <see cref="InputSettings.defaultButtonPressPoint"/>) and a <see cref="InputActionType.Value"/>
124
124
/// action cancels when a control moves back to its default value. A <see cref="InputActionType.PassThrough"/> action
125
125
/// does not generally cancel based on input on its controls.
126
126
///
127
- /// An action will also get canceled when it is disabled while in progress (see <see cref="InputAction.Disable"/>).
128
- /// Also, when an <see cref="InputDevice"/> that is
127
+ /// An action will also get canceled when it is disabled while in progress (refer to <see cref="InputAction.Disable"/>).
129
128
///
130
- /// Note that interactions (see <see cref="IInputInteraction"/>) can alter how an action does or does not progress through
129
+ /// Note that interactions (refer to <see cref="IInputInteraction"/>) can alter how an action does or does not progress through
131
130
/// the phases.
132
131
/// </summary>
133
132
Canceled
0 commit comments