예제 #1
0
    private void CarryBone(GameObject boneObject)
    {
        if (isFull)
        {
            return;         // Can't carry another while full
        }
        isFull = true;
        item   = 2;

        penguinArea.RemoveSpecificBone(boneObject);

        AddReward(1f);
    }