Dedect Grab Hand

Hi how i can dedect with which hand I pick up an object?

If you are building on the standard VR Template, the BP_MotionController has an enum variable called Hand, which you can use to check whether that is the right hand or the left hand.

Also, inside the MotionControllerPawn blueprint, when the left and right hands are spawned, their respective actors are assigned to the LeftController and RightController variables. You can also use that to keep track of which hand is triggering the Grab event.

Thank you.