Ejemplo n.º 1
0
 public void PickUp(InteractableObj obj)
 {
     if (!rightHandFull)
     {
         obj.GetPickedUpBy(this, isPlayer);
     }
 }
Ejemplo n.º 2
0
 protected override void Start()
 {
     base.Start();
     if (rightHandFull)
     {
         rightHandContaining.GetPickedUpBy(this, isPlayer);
     }
 }