Interface IGorgonRawInputDeviceData<T>
Receives Gorgon raw input data and allows processing of that data on the device object.
Namespace: Gorgon.Input
Assembly: Gorgon.Input.dll
Syntax
public interface IGorgonRawInputDeviceData<T> where T : struct
Type Parameters
Name | Description |
---|---|
T | The type of data to process. |
Remarks
This interface is not meant to be used within an application and should only be used internally by Gorgon.
Methods
| Edit this page View SourceProcessData(in T)
Function to process the Gorgon raw input data into device state data and appropriate events.
Declaration
void ProcessData(in T rawInputData)
Parameters
Type | Name | Description |
---|---|---|
T | rawInputData | The data to process. |