Example #1
0
 void DropAt(Item item, Vector3 position) {
     Lose(item);
     item.transform.position = position;
     item.GhostFor(unit);
     if (DebugManager.debug) {
         Debug.Log(String.Format("{0} thrown at {1}", item, position.ExtToString()));
     }
 }