As I understand it there are two ways I can track a hand, or a joint, in RealityKit:
- either, create an AnchorEntity, for example
AnchorEntity(.hand(.left, location: .palm))
- or, set up an ARSession with a HandTrackingProvider ( a lot more code which I haven't repeated here).
Assuming this is correct, when would I want to use one over the other?