cancel
Showing results for 
Search instead for 
Did you mean: 

Samsung Gear Controller not Returning correct Result when using OVRInput.GetUp function.

Anonymous
Not applicable
SDK : 1.21 (Lastest)
Phone : Samsung Galaxy S8
Controller : Samsung Remote Controller with Touchpad

i am using

      if (OVRInput.GetUp(OVRInput.Touch.PrimaryTouchpad, OVRInput.GetActiveController())) {

                //Code Here when True
                }
But Function Always return false.
i placed Update() and FixedUpdate() according to the OVRInput Document.
OVRInput.GetDown is working Properly..

Any help will be great..
Thank you


2 REPLIES 2

kersk
Meta Employee
Hi @virtualworkatt,

Can you confirm which version of Unity you are using? Do you have a bluetooth gamepad paired in addition to the GearVR Controller?

Does this work for you instead?
if (OVRInput.GetUp(OVRInput.Touch.PrimaryTouchpad, OVRInput.Controller.LTrackedRemote | OVRInput.Controller.RTrackedRemote)) {
/// code
}

Thanks!

Anonymous
Not applicable
Please Close this Thread Problem Fixed Thank you