public void RemoveHandObj()
 {
     Hand.gameObject.transform.parent = null;
     Hand = null;
 }
 public void SetHandObj(GameObject obj)
 {
     obj.transform.parent = this.gameObject.transform;
     Hand = obj.GetComponent <VRHandExtend>();
 }