ContainerSingleItem
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.world.ContainerSingleItem;
Implements
ContainerSingleItem
implements the following interfaces:
Members
Getter
// ContainerSingleItem.changedmyContainerSingleItem.changed
changed()
// ContainerSingleItem.changed();myContainerSingleItem.changed();
clearContent()
Clears the contents of this Clearable.script.zs
// ContainerSingleItem.clearContent();myContainerSingleItem.clearContent();
Getter
Gets the size (how many slots) of this Containerscript.zs
// ContainerSingleItem.containerSize as intmyContainerSingleItem.containerSize
Return Type:
int
containerSize() as int
Gets the size (how many slots) of this Containerscript.zs
Returns: The amount of slots this Container has.
// ContainerSingleItem.containerSize() as int;myContainerSingleItem.containerSize();
Return Type:
int
countItem(item as Item) as int
myContainerSingleItem.countItem(myItem);
Parameters:
item: ItemDefinition
Type: ItemDefinition
Return Type:
int
countStack(item as IItemStack) as int
myContainerSingleItem.countStack(myIItemStack);
Parameters:
item: IItemStack
Type: IItemStack
Return Type:
int
hasAnyOf(items as Set<Item>) as bool
myContainerSingleItem.hasAnyOf(mySet);
Parameters:
items: Set<ItemDefinition>
Type: Set<ItemDefinition>
Return Type:
bool
Getter
Checks if this Container is empty.script.zs
// ContainerSingleItem.isEmpty as boolmyContainerSingleItem.isEmpty
Return Type:
bool
isEmpty() as bool
Checks if this Container is empty.script.zs
Returns: True if empty. False otherwise.
// ContainerSingleItem.isEmpty() as bool;myContainerSingleItem.isEmpty();
Return Type:
bool
Getter
// ContainerSingleItem.maxStackSize as intmyContainerSingleItem.maxStackSize
Return Type:
int
maxStackSize() as int
// ContainerSingleItem.maxStackSize() as int;myContainerSingleItem.maxStackSize();
Return Type:
int
splitTheItem(amount as int) as ItemStack
Removes up to the specified amount of the contained item.script.zs
Returns: The item that was split from the contained item.
myContainerSingleItem.splitTheItem(myInt);
Parameters:
amount: int
Type: int
- The maximum amount of the item to split off from the contained item.
Return Type:
ItemStack