I am looking at the new Input System and came across the QueueStateEvent
function which I need to use, e.g.:
InputSystem.QueueStateEvent(Keyboard, new KeyboardState());
However, as I am doing a VR app, I need to find the equivalent of KeyboardState
but for XRController and I can’t find it. Is there one or do I need to create a custom IInputStateTypeInfo
for the XRController?
I am new to the input system so I apologize if it is trivial.