Forum Discussion

🚨 This forum is archived and read-only. To submit a forum post, please visit our new Developer Forum. 🚨
wander_world_92's avatar
wander_world_92
Honored Guest
6 years ago

Debug.Log() inside override function GrabBegin not printing to console

I override the GrabBegin from OVRGrabbable and try to detect whenever user grab an object but it never print to console. I am not sure why it is behaving this way

override public void GrabBegin(OVRGrabber hand, Collider grabPoint) {
  base.GrabBegin(hand, grabPoint);
  Debug.Log("Begin Grab");
}
Replies have been turned off for this discussion