Jump to content

How do I diable touch on the controller?


eagleeyez

Recommended Posts

You can refer to get the press up / press down status of DPad only by

 

        if (WaveVR_Controller.Input (WVR_DeviceType.WVR_DeviceType_Controller_Right).GetPressDown (WVR_InputId.WVR_InputId_Alias1_DPad_Up))        {            // DPad Up of right controller is pressed down.            // Replace WVR_InputId_Alias1_DPad_Up with            //     WVR_InputId_Alias1_DPad_Right / WVR_InputId_Alias1_DPad_Down / WVR_InputId_Alias1_DPad_Left            // for DPad Right                    / Down                         / Left        }        if (WaveVR_Controller.Input (WVR_DeviceType.WVR_DeviceType_Controller_Right).GetPressUp (WVR_InputId.WVR_InputId_Alias1_DPad_Up))        {            // Pressed up, simuliar ...        }

We will have the feature support “disable button event” on our next major release.

Thanks.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...