ICraftingInventory

Link to icraftinginventory

The ICraftingInventory contains all kinds of information on the inventory a crafting process is performed in.

Importare la Classe

Link to importare-la-classe

It might be required to import the class to avoid errors.
import crafttweaker.recipes.ICraftingInventory

ZenGetterReturn typeDescrizione
ZenGetter
player
Return type
IPlayer
Descrizione
the player owning this inventory
ZenGetter
size
Return type
int
Descrizione
the inventory's size
ZenGetter
width
Return type
int
Descrizione
the inventory's width
ZenGetter
height
Return type
int
Descrizione
the inventory's height
ZenGetter
stackCount
Return type
int
Descrizione
the the number of stacks that are actually filled in
ZenGetter
items
Return type
IItemStack[][]
Descrizione
The items that present in the crafting table
ZenGetter
itemArray
Return type
IItemStack[]
Descrizione
The items that present in the crafting table

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.