Click or drag to resize

Player.AddInputEventDelegate(Action<InputActionEventData>, UpdateLoopType, InputActionEventType, Int32, Object[]) Method

Add a delegate to receive input action events every time a specific event occurs in a specific action.

Namespace: Rewired
Assembly: Rewired_Core (in Rewired_Core.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public void AddInputEventDelegate(
	Action<InputActionEventData> callback,
	UpdateLoopType updateLoop,
	InputActionEventType eventType,
	int actionId,
	Object[] arguments
)

Parameters

callback  Action<InputActionEventData>
The delegate that will be called.
updateLoop  UpdateLoopType
The update loop in which to monitor changes.
eventType  InputActionEventType
The event type for which to send an event.
actionId  Int32
The id of the action for which to receive change events.
arguments  Object[]
Arguments for the event. See InputActionEventType for event types that require arguments.
See Also