protected void UpdateButtonStates() { for (int index = 0; index < NVRButtonsHelper.Array.Length; index++) { NVRButtons nvrbutton = NVRButtonsHelper.Array[index]; NVRButtonInputs button = Inputs[nvrbutton]; button.Axis = InputDevice.GetAxis2D(nvrbutton); button.SingleAxis = InputDevice.GetAxis1D(nvrbutton); button.PressDown = InputDevice.GetPressDown(nvrbutton); button.PressUp = InputDevice.GetPressUp(nvrbutton); button.IsPressed = InputDevice.GetPress(nvrbutton); button.TouchDown = InputDevice.GetTouchDown(nvrbutton); button.TouchUp = InputDevice.GetTouchUp(nvrbutton); button.IsTouched = InputDevice.GetTouch(nvrbutton); button.NearTouchDown = InputDevice.GetNearTouchDown(nvrbutton); button.NearTouchUp = InputDevice.GetNearTouchUp(nvrbutton); button.IsNearTouched = InputDevice.GetNearTouch(nvrbutton); } HoldButtonPressed = Inputs[HoldButton].IsPressed; HoldButtonDown = Inputs[HoldButton].PressDown; HoldButtonUp = Inputs[HoldButton].PressUp; HoldButtonAxis = Inputs[HoldButton].SingleAxis; UseButtonPressed = Inputs[UseButton].IsPressed; UseButtonDown = Inputs[UseButton].PressDown; UseButtonUp = Inputs[UseButton].PressUp; UseButtonAxis = Inputs[UseButton].SingleAxis; }
protected void UpdateButtonStates() { for (int index = 0; index < NVRButtonsHelper.Array.Length; index++) { NVRButtons nvrbutton = NVRButtonsHelper.Array[index]; NVRButtonInputs button = Inputs[nvrbutton]; button.FrameReset(InputDevice, nvrbutton); } }