Ejemplo n.º 1
0
 public void AttachInteractable()
 {
     if (target)
     {
         target.AttachController(this);
     }
 }
Ejemplo n.º 2
0
 private void AttachInteractable()
 {
     heldItem = potentialHeld;
     heldItem.AttachController(this);
     potentialHeld = null;
     state         = MechHandState.Holding;
     IKGrab(true);
 }