全站通知:

Modding/Inventory

阅读

    

2023-12-14更新

    

最新编辑:丸丸辣

阅读:

  

更新日期:2023-12-14

  

最新编辑:丸丸辣

来自UnturnedWIKI_BWIKI_哔哩哔哩
跳到导航 跳到搜索

模板:Guide

The Inventory composes of anything to do with items from their use to their storage.

Custom Item Data

文件:U4 Modding example Classes.png
Selecting the InventoryItemDataAsset class from the content browser.

Information about items and their stats are stored in UInventoryItemDataAssets. To create a custom item based on an existing item type would you create an instance of an item data asset in the content browser:

Which class you pick is based on what type of item you want to create. For example to create a backpack you would use UWearableInventoryItemDataAsset. If you cannot find the class you are looking for you can open an existing item data asset similar to the one you want and view its type.

Custom Item Types

If the item you want to create is wildly different from anything currently in-game your best bet is to create a subclass of UInventoryItemDataAsset, or the closest existing item class. From there you can add extra information and behavior to your item, and override item data functions.

Advanced

模板:Navbox content (U4)