Source Buttons
Last updated
Last updated
bool JMRInteraction.GetSelect();
Returns true during the frame the user completes a single click of the Select Button. You need to call this function from the function since the state gets reset for each frame. It will not return true until the user releases this key and presses it again.
bool JMRInteraction.GetSourceDown(JMRSDK.InputModule.JMRInteractionSourceInfo);
Returns true during the frames the user was pressing the source button, defined as the argument of type JMRSDK.InputModule.JMRInteractionSourceInfo. You need to call this function from the function. It keeps returning true as long as the user has this button pressed down.
bool JMRInteraction.GetSourceUp(JMRSDK.InputModule.JMRInteractionSourceInfo);
Returns true during the frames the user was not pressing the source button, defined as the argument of type JMRSDK.InputModule.JMRInteractionSourceInfo. You need to call this function from the function. It keeps returning true as long as the user has this button in the released state.