Entity
Link to entity
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.Entity;
Extending CapabilityProvider<Entity>
Link to extending-capabilityproviderentity
Entity extends CapabilityProvider<Entity>. That means all methods available in CapabilityProvider<Entity> are also available in Entity
Interfacce Implementate
Link to interfacce-implementate
Entity implements the following interfaces. That means all methods defined in these interfaces are also available in Entity
Metodi
Link to metodi
Name: addTag
Return Type: boolean
ZenScript CopyEntity.addTag(tagName as string) as boolean
Parametro | Tipo |
---|---|
Parametro tagName | Tipo string |
Name: blockPosition
Return Type: BlockPos
ZenScript Copy// Entity.blockPosition() as BlockPos
myEntity.blockPosition();
Name: canBeCollidedWith
Return Type: boolean
ZenScript Copy// Entity.canBeCollidedWith() as boolean
myEntity.canBeCollidedWith();
Name: canCollideWith
Return Type: boolean
ZenScript CopyEntity.canCollideWith(other as Entity) as boolean
Parametro | Tipo |
---|---|
Parametro other | Tipo Entity |
Name: canFreeze
Return Type: boolean
ZenScript Copy// Entity.canFreeze() as boolean
myEntity.canFreeze();
Name: clearFire
ZenScript Copy// Entity.clearFire()
myEntity.clearFire();
Name: closerThan
Return Type: boolean
ZenScript CopyEntity.closerThan(other as Entity, distance as double) as boolean
Parametro | Tipo |
---|---|
Parametro other | Tipo Entity |
Parametro distance | Tipo double |
Name: dampensVibrations
Return Type: boolean
ZenScript Copy// Entity.dampensVibrations() as boolean
myEntity.dampensVibrations();
Name: discard
ZenScript Copy// Entity.discard()
myEntity.discard();
Name: distanceTo
Return Type: float
ZenScript CopyEntity.distanceTo(entity as Entity) as float
Parametro | Tipo |
---|---|
Parametro entity | Tipo Entity |
Name: distanceToSqr
Return Type: double
ZenScript CopyEntity.distanceToSqr(entity as Entity) as double
Parametro | Tipo |
---|---|
Parametro entity | Tipo Entity |
Name: distanceToSqr
Return Type: double
ZenScript CopyEntity.distanceToSqr(vec as Vec3) as double
Parametro | Tipo |
---|---|
Parametro vec | Tipo Vec3 |
Name: distanceToSqr
Return Type: double
ZenScript CopyEntity.distanceToSqr(x as double, y as double, z as double) as double
Parametro | Tipo |
---|---|
Parametro x | Tipo double |
Parametro y | Tipo double |
Parametro z | Tipo double |
Name: ejectPassengers
ZenScript Copy// Entity.ejectPassengers()
myEntity.ejectPassengers();
Name: fireImmune
Return Type: boolean
ZenScript Copy// Entity.fireImmune() as boolean
myEntity.fireImmune();
Name: getAirSupply
Return Type: int
ZenScript Copy// Entity.getAirSupply() as int
myEntity.getAirSupply();
Name: getAllSlots
Return Type: stdlib.Iterable<ItemStack>
ZenScript Copy// Entity.getAllSlots() as stdlib.Iterable<ItemStack>
myEntity.getAllSlots();
Name: getArmorSlots
Return Type: stdlib.Iterable<ItemStack>
ZenScript Copy// Entity.getArmorSlots() as stdlib.Iterable<ItemStack>
myEntity.getArmorSlots();
Name: getBbHeight
Return Type: float
ZenScript Copy// Entity.getBbHeight() as float
myEntity.getBbHeight();
Name: getBbWidth
Return Type: float
ZenScript Copy// Entity.getBbWidth() as float
myEntity.getBbWidth();
Name: getBlockX
Return Type: int
ZenScript Copy// Entity.getBlockX() as int
myEntity.getBlockX();
Name: getBlockY
Return Type: int
ZenScript Copy// Entity.getBlockY() as int
myEntity.getBlockY();
Name: getBlockZ
Return Type: int
ZenScript Copy// Entity.getBlockZ() as int
myEntity.getBlockZ();
Name: getBoundingBoxForCulling
Return Type: AABB
ZenScript Copy// Entity.getBoundingBoxForCulling() as AABB
myEntity.getBoundingBoxForCulling();
Name: getCommandSenderWorld
Return Type: Level
ZenScript Copy// Entity.getCommandSenderWorld() as Level
myEntity.getCommandSenderWorld();
Name: getControllingPassenger
Return Type: Entity?
ZenScript Copy// Entity.getControllingPassenger() as Entity?
myEntity.getControllingPassenger();
Name: getCustomData
Gets the custom NBT data for this Entity.
Returns: The custom data for this Entity.
Return Type: MapData
ZenScript Copy// Entity.getCustomData() as MapData
myEntity.getCustomData();
Name: getCustomName
Return Type: Component?
ZenScript Copy// Entity.getCustomName() as Component?
myEntity.getCustomName();
Name: getData
Gets the NBT data of this Entity.
Returns: The NBT data of this Entity.
Return Type: MapData
ZenScript Copy// Entity.getData() as MapData
myEntity.getData();
Name: getDeltaMovement
Return Type: Vec3
ZenScript Copy// Entity.getDeltaMovement() as Vec3
myEntity.getDeltaMovement();
Name: getDimensionChangingDelay
Return Type: int
ZenScript Copy// Entity.getDimensionChangingDelay() as int
myEntity.getDimensionChangingDelay();
Name: getDirection
Return Type: Direction
ZenScript Copy// Entity.getDirection() as Direction
myEntity.getDirection();
Name: getDisplayName
Return Type: Component
ZenScript Copy// Entity.getDisplayName() as Component
myEntity.getDisplayName();
Name: getEyeHeight
Return Type: float
ZenScript Copy// Entity.getEyeHeight() as float
myEntity.getEyeHeight();
Name: getEyePosition
Return Type: Vec3
ZenScript Copy// Entity.getEyePosition() as Vec3
myEntity.getEyePosition();
Name: getEyePosition
Return Type: Vec3
ZenScript CopyEntity.getEyePosition(partialTicks as float) as Vec3
Parametro | Tipo |
---|---|
Parametro partialTicks | Tipo float |
Name: getEyeY
Return Type: double
ZenScript Copy// Entity.getEyeY() as double
myEntity.getEyeY();
Name: getFeetBlockState
Return Type: BlockState
ZenScript Copy// Entity.getFeetBlockState() as BlockState
myEntity.getFeetBlockState();
Name: getFirstPassenger
Return Type: Entity?
ZenScript Copy// Entity.getFirstPassenger() as Entity?
myEntity.getFirstPassenger();
Name: getFluidJumpThreshold
Return Type: double
ZenScript Copy// Entity.getFluidJumpThreshold() as double
myEntity.getFluidJumpThreshold();
Name: getForward
Return Type: Vec3
ZenScript Copy// Entity.getForward() as Vec3
myEntity.getForward();
Name: getHandSlots
Return Type: stdlib.Iterable<ItemStack>
ZenScript Copy// Entity.getHandSlots() as stdlib.Iterable<ItemStack>
myEntity.getHandSlots();
Name: getLookAngle
Return Type: Vec3
ZenScript Copy// Entity.getLookAngle() as Vec3
myEntity.getLookAngle();
Name: getMaxAirSupply
Return Type: int
ZenScript Copy// Entity.getMaxAirSupply() as int
myEntity.getMaxAirSupply();
Name: getMaxFallDistance
Return Type: int
ZenScript Copy// Entity.getMaxFallDistance() as int
myEntity.getMaxFallDistance();
Name: getMotionDirection
Return Type: Direction
ZenScript Copy// Entity.getMotionDirection() as Direction
myEntity.getMotionDirection();
Name: getName
Return Type: Component
ZenScript Copy// Entity.getName() as Component
myEntity.getName();
Name: getOnPos
Return Type: BlockPos
ZenScript Copy// Entity.getOnPos() as BlockPos
myEntity.getOnPos();
Name: getPassengers
Return Type: stdlib.List<Entity>
ZenScript Copy// Entity.getPassengers() as stdlib.List<Entity>
myEntity.getPassengers();
Name: getPercentFrozen
Return Type: float
ZenScript Copy// Entity.getPercentFrozen() as float
myEntity.getPercentFrozen();
Name: getPistonPushReaction
Return Type: PushReaction
ZenScript Copy// Entity.getPistonPushReaction() as PushReaction
myEntity.getPistonPushReaction();
Name: getPortalWaitTime
Return Type: int
ZenScript Copy// Entity.getPortalWaitTime() as int
myEntity.getPortalWaitTime();
Name: getPosition
Return Type: Vec3
ZenScript CopyEntity.getPosition(partialTicks as float) as Vec3
Parametro | Tipo |
---|---|
Parametro partialTicks | Tipo float |
Name: getRegistryName
Return Type: ResourceLocation
ZenScript Copy// Entity.getRegistryName() as ResourceLocation
myEntity.getRegistryName();
Name: getRemainingFireTicks
Return Type: int
ZenScript Copy// Entity.getRemainingFireTicks() as int
myEntity.getRemainingFireTicks();
Name: getRootVehicle
Return Type: Entity
ZenScript Copy// Entity.getRootVehicle() as Entity
myEntity.getRootVehicle();
Name: getSoundSource
Return Type: SoundSource
ZenScript Copy// Entity.getSoundSource() as SoundSource
myEntity.getSoundSource();
Name: getStringUUID
Return Type: string
ZenScript Copy// Entity.getStringUUID() as string
myEntity.getStringUUID();
Name: getTags
Return Type: Set<string>
ZenScript Copy// Entity.getTags() as Set<string>
myEntity.getTags();
Name: getTeamColor
Return Type: int
ZenScript Copy// Entity.getTeamColor() as int
myEntity.getTeamColor();
Name: getTicksFrozen
Return Type: int
ZenScript Copy// Entity.getTicksFrozen() as int
myEntity.getTicksFrozen();
Name: getTicksRequiredToFreeze
Return Type: int
ZenScript Copy// Entity.getTicksRequiredToFreeze() as int
myEntity.getTicksRequiredToFreeze();
Name: getType
Return Type: EntityType
ZenScript Copy// Entity.getType() as EntityType
myEntity.getType();
Name: getUpVector
Return Type: Vec3
ZenScript CopyEntity.getUpVector(partialTicks as float) as Vec3
Parametro | Tipo |
---|---|
Parametro partialTicks | Tipo float |
Name: getVehicle
Return Type: Entity?
ZenScript Copy// Entity.getVehicle() as Entity?
myEntity.getVehicle();
Name: getViewVector
Return Type: Vec3
ZenScript CopyEntity.getViewVector(partialTicks as float) as Vec3
Parametro | Tipo |
---|---|
Parametro partialTicks | Tipo float |
Name: getX
Return Type: double
ZenScript Copy// Entity.getX() as double
myEntity.getX();
Name: getX
Return Type: double
ZenScript CopyEntity.getX(scale as double) as double
Parametro | Tipo |
---|---|
Parametro scale | Tipo double |
Name: getY
Return Type: double
ZenScript Copy// Entity.getY() as double
myEntity.getY();
Name: getY
Return Type: double
ZenScript CopyEntity.getY(scale as double) as double
Parametro | Tipo |
---|---|
Parametro scale | Tipo double |
Name: getZ
Return Type: double
ZenScript Copy// Entity.getZ() as double
myEntity.getZ();
Name: getZ
Return Type: double
ZenScript CopyEntity.getZ(scale as double) as double
Parametro | Tipo |
---|---|
Parametro scale | Tipo double |
Name: hasCustomName
Return Type: boolean
ZenScript Copy// Entity.hasCustomName() as boolean
myEntity.hasCustomName();
Name: hasExactlyOnePlayerPassenger
Return Type: boolean
ZenScript Copy// Entity.hasExactlyOnePlayerPassenger() as boolean
myEntity.hasExactlyOnePlayerPassenger();
Name: hasGlowingTag
Return Type: boolean
ZenScript Copy// Entity.hasGlowingTag() as boolean
myEntity.hasGlowingTag();
Name: hasIndirectPassenger
Return Type: boolean
ZenScript CopyEntity.hasIndirectPassenger(entity as Entity) as boolean
Parametro | Tipo |
---|---|
Parametro entity | Tipo Entity |
Name: hasPassenger
Return Type: boolean
ZenScript CopyEntity.hasPassenger(entity as Entity) as boolean
Parametro | Tipo |
---|---|
Parametro entity | Tipo Entity |
Name: hasPassenger
Return Type: boolean
ZenScript CopyEntity.hasPassenger(predicate as Predicate<Entity>) as boolean
Parametro | Tipo |
---|---|
Parametro predicate | Tipo Predicate<Entity> |
Name: hurt
Return Type: boolean
ZenScript CopyEntity.hurt(source as DamageSource, amount as float) as boolean
Parametro | Tipo |
---|---|
Parametro sorgente | Tipo DamageSource |
Parametro amount | Tipo float |
Name: isAlive
Return Type: boolean
ZenScript Copy// Entity.isAlive() as boolean
myEntity.isAlive();
Name: isAttackable
Return Type: boolean
ZenScript Copy// Entity.isAttackable() as boolean
myEntity.isAttackable();
Name: isColliding
Return Type: boolean
ZenScript CopyEntity.isColliding(pos as BlockPos, state as BlockState) as boolean
Parametro | Tipo |
---|---|
Parametro pos | Tipo BlockPos |
Parametro state | Tipo BlockState |
Name: isCrouching
Return Type: boolean
ZenScript Copy// Entity.isCrouching() as boolean
myEntity.isCrouching();
Name: isCurrentlyGlowing
Return Type: boolean
ZenScript Copy// Entity.isCurrentlyGlowing() as boolean
myEntity.isCurrentlyGlowing();
Name: isCustomNameVisible
Return Type: boolean
ZenScript Copy// Entity.isCustomNameVisible() as boolean
myEntity.isCustomNameVisible();
Name: isDescending
Return Type: boolean
ZenScript Copy// Entity.isDescending() as boolean
myEntity.isDescending();
Name: isDiscrete
Return Type: boolean
ZenScript Copy// Entity.isDiscrete() as boolean
myEntity.isDiscrete();
Name: isFree
Return Type: boolean
ZenScript CopyEntity.isFree(x as double, y as double, z as double) as boolean
Parametro | Tipo |
---|---|
Parametro x | Tipo double |
Parametro y | Tipo double |
Parametro z | Tipo double |
Name: isFullyFrozen
Return Type: boolean
ZenScript Copy// Entity.isFullyFrozen() as boolean
myEntity.isFullyFrozen();
Name: isInLava
Return Type: boolean
ZenScript Copy// Entity.isInLava() as boolean
myEntity.isInLava();
Name: isInWall
Return Type: boolean
ZenScript Copy// Entity.isInWall() as boolean
myEntity.isInWall();
Name: isInWater
Return Type: boolean
ZenScript Copy// Entity.isInWater() as boolean
myEntity.isInWater();
Name: isInWaterOrBubble
Return Type: boolean
ZenScript Copy// Entity.isInWaterOrBubble() as boolean
myEntity.isInWaterOrBubble();
Name: isInWaterOrRain
Return Type: boolean
ZenScript Copy// Entity.isInWaterOrRain() as boolean
myEntity.isInWaterOrRain();
Name: isInWaterRainOrBubble
Return Type: boolean
ZenScript Copy// Entity.isInWaterRainOrBubble() as boolean
myEntity.isInWaterRainOrBubble();
Name: isInvisible
Return Type: boolean
ZenScript Copy// Entity.isInvisible() as boolean
myEntity.isInvisible();
Name: isInvisibleTo
Return Type: boolean
ZenScript CopyEntity.isInvisibleTo(player as Player) as boolean
Parametro | Tipo |
---|---|
Parametro player | Tipo Player |
Name: isInvulnerable
Return Type: boolean
ZenScript Copy// Entity.isInvulnerable() as boolean
myEntity.isInvulnerable();
Name: isInvulnerableTo
Return Type: boolean
ZenScript CopyEntity.isInvulnerableTo(source as DamageSource) as boolean
Parametro | Tipo |
---|---|
Parametro sorgente | Tipo DamageSource |
Name: isNoGravity
Return Type: boolean
ZenScript Copy// Entity.isNoGravity() as boolean
myEntity.isNoGravity();
Name: isOnFire
Return Type: boolean
ZenScript Copy// Entity.isOnFire() as boolean
myEntity.isOnFire();
Name: isOnGround
Return Type: boolean
ZenScript Copy// Entity.isOnGround() as boolean
myEntity.isOnGround();
Name: isOnPortalCooldown
Return Type: boolean
ZenScript Copy// Entity.isOnPortalCooldown() as boolean
myEntity.isOnPortalCooldown();
Name: isPassenger
Return Type: boolean
ZenScript Copy// Entity.isPassenger() as boolean
myEntity.isPassenger();
Name: isPassengerOfSameVehicle
Return Type: boolean
ZenScript CopyEntity.isPassengerOfSameVehicle(entity as Entity) as boolean
Parametro | Tipo |
---|---|
Parametro entity | Tipo Entity |
Name: isPickable
Return Type: boolean
ZenScript Copy// Entity.isPickable() as boolean
myEntity.isPickable();
Name: isPushable
Return Type: boolean
ZenScript Copy// Entity.isPushable() as boolean
myEntity.isPushable();
Name: isPushedByFluid
Return Type: boolean
ZenScript Copy// Entity.isPushedByFluid() as boolean
myEntity.isPushedByFluid();
Name: isRemoved
Return Type: boolean
ZenScript Copy// Entity.isRemoved() as boolean
myEntity.isRemoved();
Name: isShiftKeyDown
Return Type: boolean
ZenScript Copy// Entity.isShiftKeyDown() as boolean
myEntity.isShiftKeyDown();
Name: isSilent
Return Type: boolean
ZenScript Copy// Entity.isSilent() as boolean
myEntity.isSilent();
Name: isSpectator
Return Type: boolean
ZenScript Copy// Entity.isSpectator() as boolean
myEntity.isSpectator();
Name: isSprinting
Return Type: boolean
ZenScript Copy// Entity.isSprinting() as boolean
myEntity.isSprinting();
Name: isSteppingCarefully
Return Type: boolean
ZenScript Copy// Entity.isSteppingCarefully() as boolean
myEntity.isSteppingCarefully();
Name: isSuppressingBounce
Return Type: boolean
ZenScript Copy// Entity.isSuppressingBounce() as boolean
myEntity.isSuppressingBounce();
Name: isSwimming
Return Type: boolean
ZenScript Copy// Entity.isSwimming() as boolean
myEntity.isSwimming();
Name: isUnderWater
Return Type: boolean
ZenScript Copy// Entity.isUnderWater() as boolean
myEntity.isUnderWater();
Name: isVehicle
Return Type: boolean
ZenScript Copy// Entity.isVehicle() as boolean
myEntity.isVehicle();
Name: isVisuallyCrawling
Return Type: boolean
ZenScript Copy// Entity.isVisuallyCrawling() as boolean
myEntity.isVisuallyCrawling();
Name: isVisuallySwimming
Return Type: boolean
ZenScript Copy// Entity.isVisuallySwimming() as boolean
myEntity.isVisuallySwimming();
Name: kill
ZenScript Copy// Entity.kill()
myEntity.kill();
Name: lavaHurt
ZenScript Copy// Entity.lavaHurt()
myEntity.lavaHurt();
Name: moveRelative
ZenScript CopyEntity.moveRelative(amount as float, relative as Vec3)
Parametro | Tipo |
---|---|
Parametro amount | Tipo float |
Parametro relative | Tipo Vec3 |
Name: moveTo
ZenScript CopyEntity.moveTo(pos as BlockPos, yaw as float, pitch as float)
Parametro | Tipo |
---|---|
Parametro pos | Tipo BlockPos |
Parametro yaw | Tipo float |
Parametro pitch | Tipo float |
Name: moveTo
ZenScript CopyEntity.moveTo(x as double, y as double, z as double)
Parametro | Tipo |
---|---|
Parametro x | Tipo double |
Parametro y | Tipo double |
Parametro z | Tipo double |
Name: moveTo
ZenScript CopyEntity.moveTo(x as double, y as double, z as double, yaw as float, pitch as float)
Parametro | Tipo |
---|---|
Parametro x | Tipo double |
Parametro y | Tipo double |
Parametro z | Tipo double |
Parametro yaw | Tipo float |
Parametro pitch | Tipo float |
Name: playSound
ZenScript CopyEntity.playSound(sound as SoundEvent, volume as float, pitch as float)
Parametro | Tipo |
---|---|
Parametro sound | Tipo SoundEvent |
Parametro volume | Tipo float |
Parametro pitch | Tipo float |
Name: positionRider
ZenScript CopyEntity.positionRider(entity as Entity)
Parametro | Tipo |
---|---|
Parametro entity | Tipo Entity |
Name: removeTag
Return Type: boolean
ZenScript CopyEntity.removeTag(tagName as string) as boolean
Parametro | Tipo |
---|---|
Parametro tagName | Tipo string |
Name: removeVehicle
ZenScript Copy// Entity.removeVehicle()
myEntity.removeVehicle();
Name: rideableUnderWater
Return Type: boolean
ZenScript Copy// Entity.rideableUnderWater() as boolean
myEntity.rideableUnderWater();
Name: setAirSupply
ZenScript CopyEntity.setAirSupply(air as int)
Parametro | Tipo |
---|---|
Parametro air | Tipo int |
Name: setCustomName
ZenScript CopyEntity.setCustomName(name as Component?)
Parametro | Tipo |
---|---|
Parametro nome | Tipo Component? |
Name: setCustomNameVisible
ZenScript CopyEntity.setCustomNameVisible(visible as boolean)
Parametro | Tipo |
---|---|
Parametro visible | Tipo boolean |
Name: setDeltaMovement
ZenScript CopyEntity.setDeltaMovement(deltaMovement as Vec3)
Parametro | Tipo |
---|---|
Parametro deltaMovement | Tipo Vec3 |
Name: setDeltaMovement
ZenScript CopyEntity.setDeltaMovement(xDelta as double, yDelta as double, zDelta as double)
Parametro | Tipo |
---|---|
Parametro xDelta | Tipo double |
Parametro yDelta | Tipo double |
Parametro zDelta | Tipo double |
Name: setGlowingTag
ZenScript CopyEntity.setGlowingTag(glowing as boolean)
Parametro | Tipo |
---|---|
Parametro glowing | Tipo boolean |
Name: setInvisible
ZenScript CopyEntity.setInvisible(invisible as boolean)
Parametro | Tipo |
---|---|
Parametro invisible | Tipo boolean |
Name: setInvulnerable
ZenScript CopyEntity.setInvulnerable(invulnerable as boolean)
Parametro | Tipo |
---|---|
Parametro invulnerable | Tipo boolean |
Name: setIsInPowderSnow
ZenScript CopyEntity.setIsInPowderSnow(inPowderSnow as boolean)
Parametro | Tipo |
---|---|
Parametro inPowderSnow | Tipo boolean |
Name: setItemSlot
ZenScript CopyEntity.setItemSlot(slot as EquipmentSlot, stack as ItemStack)
Parametro | Tipo |
---|---|
Parametro slot | Tipo EquipmentSlot |
Parametro stack | Tipo ItemStack |
Name: setNoGravity
ZenScript CopyEntity.setNoGravity(noGravity as boolean)
Parametro | Tipo |
---|---|
Parametro noGravity | Tipo boolean |
Name: setOldPosAndRot
ZenScript Copy// Entity.setOldPosAndRot()
myEntity.setOldPosAndRot();
Name: setOnGround
ZenScript CopyEntity.setOnGround(onGround as boolean)
Parametro | Tipo |
---|---|
Parametro onGround | Tipo boolean |
Name: setPortalCooldown
ZenScript Copy// Entity.setPortalCooldown()
myEntity.setPortalCooldown();
Name: setPos
ZenScript CopyEntity.setPos(x as double, y as double, z as double)
Parametro | Tipo |
---|---|
Parametro x | Tipo double |
Parametro y | Tipo double |
Parametro z | Tipo double |
Name: setPosRaw
ZenScript CopyEntity.setPosRaw(x as double, y as double, z as double)
Parametro | Tipo |
---|---|
Parametro x | Tipo double |
Parametro y | Tipo double |
Parametro z | Tipo double |
Name: setRemainingFireTicks
ZenScript CopyEntity.setRemainingFireTicks(ticks as int)
Parametro | Tipo |
---|---|
Parametro ticks | Tipo int |
Name: setSecondsOnFire
ZenScript CopyEntity.setSecondsOnFire(seconds as int)
Parametro | Tipo |
---|---|
Parametro seconds | Tipo int |
Name: setShiftKeyDown
ZenScript CopyEntity.setShiftKeyDown(keyDown as boolean)
Parametro | Tipo |
---|---|
Parametro keyDown | Tipo boolean |
Name: setSilent
ZenScript CopyEntity.setSilent(silent as boolean)
Parametro | Tipo |
---|---|
Parametro silent | Tipo boolean |
Name: setSprinting
ZenScript CopyEntity.setSprinting(sprinting as boolean)
Parametro | Tipo |
---|---|
Parametro sprinting | Tipo boolean |
Name: setSwimming
ZenScript CopyEntity.setSwimming(swimming as boolean)
Parametro | Tipo |
---|---|
Parametro swimming | Tipo boolean |
Name: setTicksFrozen
ZenScript CopyEntity.setTicksFrozen(ticks as int)
Parametro | Tipo |
---|---|
Parametro ticks | Tipo int |
Name: shouldShowName
Return Type: boolean
ZenScript Copy// Entity.shouldShowName() as boolean
myEntity.shouldShowName();
Name: showVehicleHealth
Return Type: boolean
ZenScript Copy// Entity.showVehicleHealth() as boolean
myEntity.showVehicleHealth();
Name: startRiding
Return Type: boolean
ZenScript CopyEntity.startRiding(entity as Entity) as boolean
Parametro | Tipo |
---|---|
Parametro entity | Tipo Entity |
Name: startRiding
Return Type: boolean
ZenScript CopyEntity.startRiding(entity as Entity, force as boolean) as boolean
Parametro | Tipo |
---|---|
Parametro entity | Tipo Entity |
Parametro force | Tipo boolean |
Name: stopRiding
ZenScript Copy// Entity.stopRiding()
myEntity.stopRiding();
Name: teleportTo
ZenScript CopyEntity.teleportTo(x as double, y as double, z as double)
Parametro | Tipo |
---|---|
Parametro x | Tipo double |
Parametro y | Tipo double |
Parametro z | Tipo double |
Name: turn
ZenScript CopyEntity.turn(yaw as double, pitch as double)
Parametro | Tipo |
---|---|
Parametro yaw | Tipo double |
Parametro pitch | Tipo double |
Name: unRide
ZenScript Copy// Entity.unRide()
myEntity.unRide();
Name: updateCustomData
Updates the custom NBT data for this Entity.
ZenScript Copy// Entity.updateCustomData(data as MapData)
myEntity.updateCustomData({custom: "data"});
Parametro | Tipo | Descrizione |
---|---|---|
Parametro data | Tipo MapData | Descrizione The custom data to store. |
Name: updateData
Updates the NBT data of this Entity.
ZenScript Copy// Entity.updateData(data as MapData)
myEntity.updateData({key: "value"});
Parametro | Tipo | Descrizione |
---|---|---|
Parametro data | Tipo MapData | Descrizione The new Data for this Entity |
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter | Descrizione |
---|---|---|---|---|
Nome airSupply | Tipo int | Ha Getter sì | Ha Setter no | Descrizione |
Nome allSlots | Tipo stdlib.Iterable<ItemStack> | Ha Getter sì | Ha Setter no | Descrizione |
Nome armorSlots | Tipo stdlib.Iterable<ItemStack> | Ha Getter sì | Ha Setter no | Descrizione |
Nome bbHeight | Tipo float | Ha Getter sì | Ha Setter no | Descrizione |
Nome bbWidth | Tipo float | Ha Getter sì | Ha Setter no | Descrizione |
Nome blockPosition | Tipo BlockPos | Ha Getter sì | Ha Setter no | Descrizione |
Nome blockX | Tipo int | Ha Getter sì | Ha Setter no | Descrizione |
Nome blockY | Tipo int | Ha Getter sì | Ha Setter no | Descrizione |
Nome blockZ | Tipo int | Ha Getter sì | Ha Setter no | Descrizione |
Nome boundingBoxForCulling | Tipo AABB | Ha Getter sì | Ha Setter no | Descrizione |
Nome canBeCollidedWith | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome canFreeze | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome commandSenderWorld | Tipo Level | Ha Getter sì | Ha Setter no | Descrizione |
Nome controllingPassenger | Tipo Entity? | Ha Getter sì | Ha Setter no | Descrizione |
Nome customData | Tipo MapData | Ha Getter sì | Ha Setter no | Descrizione Gets the custom NBT data for this Entity. |
Nome customName | Tipo Component? | Ha Getter sì | Ha Setter no | Descrizione |
Nome dampensVibrations | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome data | Tipo MapData | Ha Getter sì | Ha Setter no | Descrizione Gets the NBT data of this Entity. |
Nome deltaMovement | Tipo Vec3 | Ha Getter sì | Ha Setter sì | Descrizione |
Nome dimensionChangingDelay | Tipo int | Ha Getter sì | Ha Setter no | Descrizione |
Nome direction | Tipo Direction | Ha Getter sì | Ha Setter no | Descrizione |
Nome displayName | Tipo Component | Ha Getter sì | Ha Setter no | Descrizione |
Nome eyeHeight | Tipo float | Ha Getter sì | Ha Setter no | Descrizione |
Nome eyePosition | Tipo Vec3 | Ha Getter sì | Ha Setter no | Descrizione |
Nome eyeY | Tipo double | Ha Getter sì | Ha Setter no | Descrizione |
Nome feetBlockState | Tipo BlockState | Ha Getter sì | Ha Setter no | Descrizione |
Nome fireImmune | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome firstPassenger | Tipo Entity? | Ha Getter sì | Ha Setter no | Descrizione |
Nome fluidJumpThreshold | Tipo double | Ha Getter sì | Ha Setter no | Descrizione |
Nome forward | Tipo Vec3 | Ha Getter sì | Ha Setter no | Descrizione |
Nome handSlots | Tipo stdlib.Iterable<ItemStack> | Ha Getter sì | Ha Setter no | Descrizione |
Nome hasCustomName | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome hasExactlyOnePlayerPassenger | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome hasGlowingTag | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isAlive | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isAttackable | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isCrouching | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isCurrentlyGlowing | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isCustomNameVisible | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isDescending | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isDiscrete | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isFullyFrozen | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isInLava | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isInWall | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isInWater | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isInWaterOrBubble | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isInWaterOrRain | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isInWaterRainOrBubble | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isInvisible | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isInvulnerable | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isNoGravity | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isOnFire | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isOnGround | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isOnPortalCooldown | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isPassenger | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isPickable | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isPushable | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isPushedByFluid | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isRemoved | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isShiftKeyDown | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isSilent | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isSpectator | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isSprinting | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isSteppingCarefully | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isSuppressingBounce | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isSwimming | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isUnderWater | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isVehicle | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isVisuallyCrawling | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome isVisuallySwimming | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome level | Tipo Level | Ha Getter sì | Ha Setter no | Descrizione |
Nome lookAngle | Tipo Vec3 | Ha Getter sì | Ha Setter no | Descrizione |
Nome maxAirSupply | Tipo int | Ha Getter sì | Ha Setter no | Descrizione |
Nome maxFallDistance | Tipo int | Ha Getter sì | Ha Setter no | Descrizione |
Nome motionDirection | Tipo Direction | Ha Getter sì | Ha Setter no | Descrizione |
Nome nome | Tipo Component | Ha Getter sì | Ha Setter no | Descrizione |
Nome onPos | Tipo BlockPos | Ha Getter sì | Ha Setter no | Descrizione |
Nome passengers | Tipo stdlib.List<Entity> | Ha Getter sì | Ha Setter no | Descrizione |
Nome percentFrozen | Tipo float | Ha Getter sì | Ha Setter no | Descrizione |
Nome pistonPushReaction | Tipo PushReaction | Ha Getter sì | Ha Setter no | Descrizione |
Nome portalWaitTime | Tipo int | Ha Getter sì | Ha Setter no | Descrizione |
Nome position | Tipo Vec3 | Ha Getter sì | Ha Setter no | Descrizione |
Nome registryName | Tipo ResourceLocation | Ha Getter sì | Ha Setter no | Descrizione |
Nome remainingFireTicks | Tipo int | Ha Getter sì | Ha Setter no | Descrizione |
Nome rideableUnderWater | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome rootVehicle | Tipo Entity | Ha Getter sì | Ha Setter no | Descrizione |
Nome shouldShowName | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome showVehicleHealth | Tipo boolean | Ha Getter sì | Ha Setter no | Descrizione |
Nome soundSource | Tipo SoundSource | Ha Getter sì | Ha Setter no | Descrizione |
Nome stringUUID | Tipo string | Ha Getter sì | Ha Setter no | Descrizione |
Nome tags | Tipo Set<string> | Ha Getter sì | Ha Setter no | Descrizione |
Nome teamColor | Tipo int | Ha Getter sì | Ha Setter no | Descrizione |
Nome ticksFrozen | Tipo int | Ha Getter sì | Ha Setter no | Descrizione |
Nome ticksRequiredToFreeze | Tipo int | Ha Getter sì | Ha Setter no | Descrizione |
Nome type | Tipo EntityType | Ha Getter sì | Ha Setter no | Descrizione |
Nome vehicle | Tipo Entity? | Ha Getter sì | Ha Setter no | Descrizione |
Nome x | Tipo double | Ha Getter sì | Ha Setter no | Descrizione |
Nome y | Tipo double | Ha Getter sì | Ha Setter no | Descrizione |
Nome z | Tipo double | Ha Getter sì | Ha Setter no | Descrizione |