Interface CarInputActions.ICarControlsActions
Interface to implement callback methods for all input action callbacks associated with input actions defined by "CarControls" which allows adding and removing callbacks.
Namespace: NWH.WheelController3D
Assembly: NWH.WheelController.dll
Syntax
public interface CarInputActions.ICarControlsActions
Methods
| Edit this page View SourceOnHandbrake(CallbackContext)
Method invoked when associated input action "Handbrake" is either UnityEngine.InputSystem.InputAction.started, UnityEngine.InputSystem.InputAction.performed or UnityEngine.InputSystem.InputAction.canceled.
Declaration
void OnHandbrake(InputAction.CallbackContext context)
Parameters
| Type | Name | Description |
|---|---|---|
| InputAction.CallbackContext | context |
See Also
OnSteering(CallbackContext)
Method invoked when associated input action "Steering" is either UnityEngine.InputSystem.InputAction.started, UnityEngine.InputSystem.InputAction.performed or UnityEngine.InputSystem.InputAction.canceled.
Declaration
void OnSteering(InputAction.CallbackContext context)
Parameters
| Type | Name | Description |
|---|---|---|
| InputAction.CallbackContext | context |
See Also
OnThrottle(CallbackContext)
Method invoked when associated input action "Throttle" is either UnityEngine.InputSystem.InputAction.started, UnityEngine.InputSystem.InputAction.performed or UnityEngine.InputSystem.InputAction.canceled.
Declaration
void OnThrottle(InputAction.CallbackContext context)
Parameters
| Type | Name | Description |
|---|---|---|
| InputAction.CallbackContext | context |