eagleeyez Posted January 4, 2019 Share Posted January 4, 2019 Just as the title says. How do I disable touch on the controller? In which script and where? I only want the Dpad to work. Link to comment Share on other sites More sharing options...
Tony PH Lin Posted January 7, 2019 Share Posted January 7, 2019 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.