PlacementType
Link to placementtype
Импорт класса
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 Copyimport crafttweaker.api.entity.PlacementType;
Enum Constants
Link to enum-constants
PlacementType is an enum. It has 4 enum constants. They are accessible using the code below.
ZenScript CopyPlacementType.ON_GROUND
PlacementType.IN_WATER
PlacementType.NO_RESTRICTIONS
PlacementType.IN_LAVA
Методы
Link to методы
Name: canSpawnAt
Checks if a specific entity type can spawn in the world at the given position with this PlacementType.
Returns: True if the entity type can spawn. False otherwise.
Return Type: boolean
ZenScript Copy// PlacementType.canSpawnAt(world as MCWorld, pos as BlockPos, entityType as MCEntityType) as boolean
myPlacementType.canSpawnAt(world, new BlockPos(1,2,3), <entitytype:minecraft:pig>);
Параметр | Тип | Описание |
---|---|---|
Параметр world | Тип MCWorld | Описание A World object. |
Параметр pos | Тип BlockPos | Описание The position to check at. |
Параметр entityType | Тип MCEntityType | Описание The EntityType to check for. |