getHandSpace method
Implementation
WebXRController? getHandSpace(){
if(_hand == null) {
_hand = WebXRController();
_hand!.matrixAutoUpdate = false;
_hand!.visible = false;
_hand!.joints = {};
_hand!.inputState = {'pinching': false };
}
return _hand;
}