Импорт класса

Link to импорт-класса

It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.

ZenScript
Copy
import crafttweaker.api.entity.MCItemEntity;

Extending MCEntity

Link to extending-mcentity

MCItemEntity extends MCEntity. That means all methods available in MCEntity are also available in MCItemEntity

ZenScript
Copy
new MCItemEntity(world as MCWorld, x as double, y as double, z as double, stack as ItemStack) as MCItemEntity
ПараметрТипОписание
Параметр
world
Тип
MCWorld
Описание
Описание отсутствует
Параметр
x
Тип
double
Описание
Описание отсутствует
Параметр
y
Тип
double
Описание
Описание отсутствует
Параметр
z
Тип
double
Описание
Описание отсутствует
Параметр
stack
Тип
ItemStack
Описание
Описание отсутствует

Name: getItem

Gets the IItemStack inside this ItemEntity.

Returns: The IItemStack inside this ItemEntity.
Return Type: IItemStack

ZenScript
Copy
// MCItemEntity.getItem() as IItemStack

itemEntity.getItem();

Name: setItem

Sets the IItemStack inside this ItemEntity.

Return Type: void

ZenScript
Copy
// MCItemEntity.setItem(stack as IItemStack) as void

itemEntity.setItem(<item:minecraft:diamond>);
ПараметрТипОписание
Параметр
stack
Тип
IItemStack
Описание
The new IItemStack.

Свойства

Link to свойства

НазваниеТипИмеет GetterИмеет SetterОписание
Название
item
Тип
IItemStack
Имеет Getter
true
Имеет Setter
true
Описание
Gets the IItemStack inside this ItemEntity.