Discussions

Ask a Question
Back to All

Left or Right Hand?

How can I tell what hand is grabbing an object in code? I'd like to implement seperate interactor objects per object for each hand based on what hand is grabbing it, that way a shield in the left hand faces left, and will face the opposite direction in the other hand.

Try accessing the root transform object:

Item.AttachedHand.transform.root

Its name will be LeftHand or RightHand, if you've kept to the prefab naming convention.

Or:

Item.AttachedHand.Player.LeftHand
Item.AttachedHand.Player.RightHand

Item.AttachedHand.IsRight and Item.AttachedHand.IsLeft should work how you'd like :)