示例#1
0
 public void Drop(Vector3 location)
 {
     if (heldItem)
     {
         heldItem.transform.position = location;
         heldItem.Dequip();
         heldItem = null;
     }
 }