EntityType
Link to entitytype
Importare la Classe
Link to importare-la-classe
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.EntityType;
Caster
Link to caster
Tipo Risultato | Implicito |
---|---|
Tipo Risultato EntityIngredient | Implicito sì |
Metodi
Link to metodi
Name: canSpawnFarFromPlayer
Return Type: boolean
ZenScript Copy// EntityType.canSpawnFarFromPlayer() as boolean
myEntityType.canSpawnFarFromPlayer();
Name: canSummon
Return Type: boolean
ZenScript Copy// EntityType.canSummon() as boolean
myEntityType.canSummon();
Name: create
Return Type: Entity
ZenScript CopyEntityType.create(param0 as ServerLevel, param1 as MapData, param2 as Component, param3 as Player, param4 as BlockPos, param5 as MobSpawnType, alignPosition as boolean, invertY as boolean) as Entity
Parametro | Tipo | Descrizione |
---|---|---|
Parametro param0 | Tipo ServerLevel | Descrizione No Description Provided |
Parametro param1 | Tipo MapData | Descrizione No Description Provided |
Parametro param2 | Tipo Component | Descrizione No Description Provided |
Parametro param3 | Tipo Player | Descrizione No Description Provided |
Parametro param4 | Tipo BlockPos | Descrizione No Description Provided |
Parametro param5 | Tipo MobSpawnType | Descrizione No Description Provided |
Parametro alignPosition | Tipo boolean | Descrizione No Description Provided |
Parametro invertY | Tipo boolean | Descrizione No Description Provided |
Name: fireImmune
Return Type: boolean
ZenScript Copy// EntityType.fireImmune() as boolean
myEntityType.fireImmune();
Name: getCategory
Return Type: MobCategory
ZenScript Copy// EntityType.getCategory() as MobCategory
myEntityType.getCategory();
Name: getDefaultLootTable
Return Type: ResourceLocation
ZenScript Copy// EntityType.getDefaultLootTable() as ResourceLocation
myEntityType.getDefaultLootTable();
Name: getDescription
Return Type: Component
ZenScript Copy// EntityType.getDescription() as Component
myEntityType.getDescription();
Name: getDescriptionId
Return Type: string
ZenScript Copy// EntityType.getDescriptionId() as string
myEntityType.getDescriptionId();
Name: getDimensions
Return Type: EntityDimensions
ZenScript Copy// EntityType.getDimensions() as EntityDimensions
myEntityType.getDimensions();
Name: getHeight
Return Type: float
ZenScript Copy// EntityType.getHeight() as float
myEntityType.getHeight();
Name: getWidth
Return Type: float
ZenScript Copy// EntityType.getWidth() as float
myEntityType.getWidth();
Name: isBlockDangerous
Return Type: boolean
ZenScript CopyEntityType.isBlockDangerous(state as BlockState) as boolean
Parametro | Tipo | Descrizione |
---|---|---|
Parametro state | Tipo BlockState | Descrizione No Description Provided |
Name: isIn
Return Type: boolean
ZenScript CopyEntityType.isIn(tag as MCTag<EntityType>) as boolean
Parametro | Tipo | Descrizione |
---|---|---|
Parametro tag | Tipo MCTag<EntityType> | Descrizione No Description Provided |
Name: spawn
Return Type: Entity
ZenScript CopyEntityType.spawn(level as ServerLevel, data as MapData, displayName as Component, spawningPlayer as Player, pos as BlockPos, spawnType as MobSpawnType, alignPosition as boolean, invertY as boolean) as Entity
Parametro | Tipo | Descrizione |
---|---|---|
Parametro level | Tipo ServerLevel | Descrizione No Description Provided |
Parametro data | Tipo MapData | Descrizione No Description Provided |
Parametro displayName | Tipo Component | Descrizione No Description Provided |
Parametro spawningPlayer | Tipo Player | Descrizione No Description Provided |
Parametro pos | Tipo BlockPos | Descrizione No Description Provided |
Parametro spawnType | Tipo MobSpawnType | Descrizione No Description Provided |
Parametro alignPosition | Tipo boolean | Descrizione No Description Provided |
Parametro invertY | Tipo boolean | Descrizione No Description Provided |
Name: toShortString
Return Type: string
ZenScript Copy// EntityType.toShortString() as string
myEntityType.toShortString();
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome canSpawnFarFromPlayer | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome canSummon | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome category | Tipo MobCategory | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome commandString | Tipo string | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome defaultLootTable | Tipo ResourceLocation | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome description | Tipo Component | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome descriptionId | Tipo string | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome dimensions | Tipo EntityDimensions | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome fireImmune | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome height | Tipo float | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome toShortString | Tipo string | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |
Nome width | Tipo float | Ha Getter sì | Ha Setter no | Descrizione No Description Provided |