ICraftingInventory
Link to icraftinginventory
The ICraftingInventory contains all kinds of information on the inventory a crafting process is performed in.
导入类
Link to 导入类
It might be required to import the class to avoid errors.
import crafttweaker.recipes.ICraftingInventory
ZenGetters
Link to zengetters
ZenGetter | Return type | 描述 |
---|---|---|
ZenGetter player | Return type IPlayer | 描述 the player owning this inventory |
ZenGetter size #大小 | Return type int | 描述 the inventory's size |
ZenGetter width #宽度 | Return type int | 描述 the inventory's width |
ZenGetter height #实体高度 | Return type int | 描述 the inventory's height |
ZenGetter stackCount | Return type int | 描述 the the number of stacks that are actually filled in |
ZenGetter items | Return type IItemStack[][] | 描述 The items that present in the crafting table |
ZenGetter itemArray | Return type IItemStack[] | 描述 The items that present in the crafting table |
ZenMethods
Link to zenmethods
Following Methods are available:
inventory.getStack(index)
returns the IItemStack at the given index or null if no item present. Index is an int.
inventory.setStack(index, item)
sets the Stack at the given index to the provided item. Index is an int, item is an IItemStack. Use null if you want to clear the stack at that index.
The top left stack is position (0, 0), row and column are ints.
inventory.getStack(row, column)
returns the IItemStack at the given position or null if no item present.
inventory.setStack(row, column, item)
sets the stack at the given position to the provided item. Item is an IItemStack. Use null if you want to clear the stack at that position.