當前位置: 首頁>>代碼示例>>C#>>正文


C# BaseEntity.GiveItem方法代碼示例

本文整理匯總了C#中BaseEntity.GiveItem方法的典型用法代碼示例。如果您正苦於以下問題:C# BaseEntity.GiveItem方法的具體用法?C# BaseEntity.GiveItem怎麽用?C# BaseEntity.GiveItem使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在BaseEntity的用法示例。


在下文中一共展示了BaseEntity.GiveItem方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Gathering

        public static void Gathering(ResourceDispenser dispenser, BaseEntity to, ItemAmount itemAmt, int amount)
        {
            itemAmt.amount += amount;
            BaseEntity from = (BaseEntity)dispenser.GetFieldValue("baseEntity");
            GatherEvent ge = new GatherEvent(dispenser, from, to, itemAmt, amount);
            OnGathering.OnNext(ge);

            if (ge.Amount > 0) {

                if (amount > 0) {

                    itemAmt.amount -= amount;
                    if (itemAmt.amount < 0)
                        itemAmt.amount = 0;

                    Item item = ItemManager.CreateByItemID(itemAmt.itemid, ge.Amount, false);
                    if (item == null) {
                        return;
                    }
                    to.GiveItem(item);
                }
            }
        }
開發者ID:Viproz,項目名稱:Pluton,代碼行數:23,代碼來源:Hooks.cs

示例2: On_PlayerGathering

        public static void On_PlayerGathering(ResourceDispenser dispenser, BaseEntity to, ItemAmount itemAmt, float gatherDamage, float destroyFraction)
        {
            BaseEntity from = (BaseEntity)dispenser.GetFieldValue("baseEntity");

            if (itemAmt.amount == 0) {
                return;
            }

            float num = gatherDamage / from.MaxHealth ();
            float num2 = itemAmt.startAmount / (float)dispenser.GetFieldValue("startingItemCounts");
            float value = itemAmt.startAmount * num / num2;
            float num3 = Mathf.Clamp (value, 0, itemAmt.amount);
            float num4 = num3 * destroyFraction * 2;
            if (itemAmt.amount < num3 + num4) {
                itemAmt.amount -= destroyFraction * num3;
                num3 = itemAmt.amount;
                num4 = 0;
            }
            float amount = itemAmt.amount;
            itemAmt.amount -= num3;
            if (itemAmt.amount < 0) {
                itemAmt.amount = 0;
            }
            int num5 = Mathf.Clamp (Mathf.RoundToInt (num3), 0, Mathf.CeilToInt (amount));
            itemAmt.amount -= num4;
            if (itemAmt.amount < 0) {
                itemAmt.amount = 0;
            }

            GatherEvent ge = new GatherEvent(dispenser, from, to, itemAmt, num5);

            OnNext("On_PlayerGathering", ge);

            if (ge.Amount <= 0) {
                return;
            }
            Item item = ItemManager.CreateByItemID (itemAmt.itemid, ge.Amount);
            if (item == null) {
                return;
            }

            to.GiveItem (item, BaseEntity.GiveItemReason.ResourceHarvested);
        }
開發者ID:Notulp,項目名稱:Pluton,代碼行數:43,代碼來源:Hooks.cs


注:本文中的BaseEntity.GiveItem方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。