Example #1
0
 private void PutFoodDown(InteractObject obj)
 {
     if (carry != null && obj.IsEmpty)
     {
         obj.AddFood(carry);
         carry             = null;
         carrySprite.color = new Color(1, 1, 1, 0.1f);
     }
 }