Discussions
Left or Right Hand?
over 8 years ago by Chris D. Legasse
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.
about 8 years ago by Strata Kyle
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.
about 8 years ago by Strata Kyle
Or:
Item.AttachedHand.Player.LeftHand
Item.AttachedHand.Player.RightHand
about 8 years ago by Keith Bradner
Item.AttachedHand.IsRight and Item.AttachedHand.IsLeft should work how you'd like :)