Class Entity
- All Implemented Interfaces:
CommandOutput
,Nameable
,EntityLike
- Direct Known Subclasses:
AbstractDecorationEntity
,AbstractMinecartEntity
,AreaEffectCloudEntity
,BoatEntity
,DisplayEntity
,EndCrystalEntity
,EnderDragonPart
,EvokerFangsEntity
,ExperienceOrbEntity
,EyeOfEnderEntity
,FallingBlockEntity
,InteractionEntity
,ItemEntity
,LightningEntity
,LivingEntity
,MarkerEntity
,ProjectileEntity
,TntEntity
double
-precision position.
They are registered in EntityType
.
Examples of entities include players, mobs, minecarts, projectiles, and dropped items.
Entity can be identified by the ID
or the UUID
.
Entity ID is an integer used in networking, and is not saved on disk. UUID is
used to identify an entity in NBT and other places where persistence is required.
Creating and spawning entities
Entities must be created first, which then can be added to a world ("spawning"). There are multiple methods of doing this, shown on the table below:Method | Recommended usage | Additional note |
---|---|---|
EntityType.spawn(net.minecraft.server.world.ServerWorld, net.minecraft.util.math.BlockPos, net.minecraft.entity.SpawnReason) | Any entity | Initializes mobs. |
EntityType.spawnFromItemStack(net.minecraft.server.world.ServerWorld, net.minecraft.item.ItemStack, net.minecraft.entity.player.PlayerEntity, net.minecraft.util.math.BlockPos, net.minecraft.entity.SpawnReason, boolean, boolean) | Entities in items (such as buckets) | Initializes mobs. |
ExperienceOrbEntity.spawn(net.minecraft.server.world.ServerWorld, net.minecraft.util.math.Vec3d, int) | Experience orbs with set amount | Can spawn multiple orbs. |
ItemScatterer methods | Items | Will spawn with random velocity. |
Method | Recommended usage | Additional note |
---|---|---|
ServerWorldAccess.spawnEntityAndPassengers(net.minecraft.entity.Entity) | Any entity | Does not check duplicate UUID. |
ServerWorld.spawnNewEntityAndPassengers(net.minecraft.entity.Entity) | Any entity | Checks duplicate UUID. |
ModifiableWorld.spawnEntity(net.minecraft.entity.Entity) | Any entity | Does not spawn passengers. |
Warning: When using constructors to spawn mobs instead of
EntityType.create(net.minecraft.server.world.ServerWorld, net.minecraft.nbt.NbtCompound, java.util.function.Consumer<T>, net.minecraft.util.math.BlockPos, net.minecraft.entity.SpawnReason, boolean, boolean)
, they must be manually
initialized
before spawning.
Discarding
Entities can be discarded (despawned) by callingdiscard()
. This does not drop loot.
To kill entities and drop loot, call kill()
or damage(net.minecraft.entity.damage.DamageSource,float)
(with large enough damage amount).- Mappings:
Namespace Name official bfh
intermediary net/minecraft/class_1297
named net/minecraft/entity/Entity
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic enum
The move effect represents possible effects of an entity moving, such as playing sounds, emitting game events, none, or both.static interface
static enum
The reason of the entity's removal. -
Field Summary
Modifier and TypeFieldDescriptionint
private static final TrackedData<Integer>
private BlockPos
private @Nullable BlockState
private Box
private EntityChangeListener
private ChunkPos
boolean
private static final AtomicInteger
A generator of unique entitynetwork IDs
.private static final TrackedData<Optional<Text>>
protected final DataTracker
static final float
The factor by which an entity's speed is reduced every tick.static final int
static final int
private EntityDimensions
float
protected static final int
float
static final float
static final float
static final double
static final double
private boolean
private int
protected boolean
protected static final TrackedData<Byte>
protected Object2DoubleMap<TagKey<Fluid>>
static final int
private static final TrackedData<Integer>
private boolean
protected static final int
boolean
private boolean
boolean
float
private int
The entity's network ID, used as a reference for synchronization over network.static final String
boolean
protected boolean
boolean
boolean
Whether the entity should be included in intersection checks.private static final int
private boolean
private int
private float
protected BlockPos
double
double
double
private static final Logger
static final int
static final int
static final float
protected Vec3d
private static final TrackedData<Boolean>
protected int
private float
private static final TrackedData<Boolean>
boolean
private static final Box
protected static final int
private boolean
private ImmutableList<Entity>
static final String
private final double[]
private long
private float
private int
private Vec3d
protected static final TrackedData<EntityPose>
float
float
double
double
float
double
protected final Random
private @Nullable Entity.RemovalReason
private static double
protected int
private static final TrackedData<Boolean>
private static final int
float
private static final double
private static final double
private static final double
private static final int
private float
private float
protected boolean
private static final int
int
protected boolean
private final TrackedPosition
private final EntityType<?>
protected UUID
static final String
protected String
private Vec3d
boolean
boolean
boolean
boolean
boolean
private World
private float
Fields inherited from interface net.minecraft.server.command.CommandOutput
DUMMY
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
Adds the effects of this entity when it travels in air, usually to the world the entity is in.boolean
addCommandTag
(String tag) Adds a command tag to this entity.protected void
Adds the effects of this entity flapping, usually to the world the entity is in.protected void
addPassenger
(Entity passenger) Addspassenger
as a passenger.void
addVelocity
(double deltaX, double deltaY, double deltaZ) void
addVelocity
(Vec3d velocity) static Vec3d
adjustMovementForCollisions
(@Nullable Entity entity, Vec3d movement, Box entityBoundingBox, World world, List<VoxelShape> collisions) private Vec3d
adjustMovementForCollisions
(Vec3d movement) private static Vec3d
adjustMovementForCollisions
(Vec3d movement, Box entityBoundingBox, List<VoxelShape> collisions) protected Vec3d
adjustMovementForPiston
(Vec3d movement) protected Vec3d
adjustMovementForSneaking
(Vec3d movement, MovementType type) void
animateDamage
(float yaw) Called on the client to animate the entity's damage (the wobble).void
applyDamageEffects
(LivingEntity attacker, Entity target) Applies damage effects toattacker
ortarget
.float
applyMirror
(BlockMirror mirror) Appliesmirror
to the entity's yaw.float
applyRotation
(BlockRotation rotation) Appliesrotation
to the entity's yaw.void
CallstickInVoid()
when the entity is 64 blocks below the world's minimum Y position.void
baseTick()
boolean
Returns whether the entity should bypass effects caused by landing on a block.boolean
Returns whether the entity should bypass effects caused by stepping.protected Box
protected Box
void
Calculates and sets the dimension (bounding box) of the entity and refreshes its position.protected float
private double
calculatePistonMovementFactor
(Direction.Axis axis, double offsetFactor) protected boolean
canAddPassenger
(Entity passenger) Returns whetherentity
can ride this entity.boolean
Returns whether the entity cannot trigger pressure plates or tripwires.boolean
boolean
canBeSpectated
(ServerPlayerEntity spectator) Returns whetherspectator
can spectate this entity.private boolean
canClimb
(BlockState state) boolean
canExplosionDestroyBlock
(Explosion explosion, BlockView world, BlockPos pos, BlockState state, float explosionPower) Returns whetherexplosion
from this entity can destroystate
.boolean
Returns whether the entity can freeze.boolean
canHit()
Returns whether the entity can be hit with a projectile or be targeted by the player crosshair.boolean
canModifyAt
(World world, BlockPos pos) Returns whether the entity can modify the world atpos
.boolean
boolean
protected boolean
canStartRiding
(Entity entity) Returns whether this entity can rideentity
.boolean
Returns whether the entity can use nether portals and end portals.void
changeLookDirection
(double cursorDeltaX, double cursorDeltaY) protected void
Checks the entity's block collision, callingAbstractBlock.onEntityCollision(net.minecraft.block.BlockState, net.minecraft.world.World, net.minecraft.util.math.BlockPos, net.minecraft.entity.Entity)
andonBlockCollision(net.minecraft.block.BlockState)
.void
Checks whether the entity should be despawned.(package private) void
boolean
collidesWith
(Entity other) Returns whether this entity cannot occupy the same space withother
.boolean
collidesWithStateAtPos
(BlockPos pos, BlockState state) Returns whether the entity collides with the blockstate
atpos
.void
Copies serializable data and nether portal data fromoriginal
.void
copyPositionAndRotation
(Entity entity) Sets the entity's position and rotation the same asentity
.protected boolean
Returnstrue
if this entity supports passengers in general.Returns a packet to notify the clients of the entity's spawning.boolean
damage
(DamageSource source, float amount) Applies a damage to this entity.final void
detach()
Removes all the passengers and removes this entity from any vehicles it is riding.final void
discard()
Discards the entity.void
Dismounts the vehicle if present.float
distanceTo
(Entity entity) Returns the distance between this entity andentity
.boolean
doesNotCollide
(double offsetX, double offsetY, double offsetZ) Returns whether the bounding box with the given offsets do not collide with blocks or fluids.private boolean
doesNotCollide
(Box box) boolean
Returns whether an entity should render as being on fire.dropItem
(ItemConvertible item) Drops oneitem
at the entity's position.dropItem
(ItemConvertible item, int yOffset) Drops oneitem
at the entity's position with the given Y offset.Dropsstack
at the entity's position.Dropsstack
at the entity's position with the given Y offset.void
emitGameEvent
(GameEvent event) Emits a game event originating from this entity at this entity's position.void
emitGameEvent
(GameEvent event, @Nullable Entity entity) Emits a game event originating from another entity at this entity's position.boolean
Returns whetherEntityType.loadFromEntityNbt(net.minecraft.world.World, net.minecraft.entity.player.PlayerEntity, net.minecraft.entity.Entity, net.minecraft.nbt.NbtCompound)
should reject entity NBTs unless called by an operator.boolean
void
equipStack
(EquipmentSlot slot, ItemStack stack) Equipsstack
atslot
.This is also used to set an entity's mainhand or offhand stack.void
Extinguishes this entity.void
protected void
fall
(double heightDifference, boolean onGround, BlockState state, BlockPos landedPosition) Called when the entity falls.int
getAir()
Returns the air left for the entity, in ticks.Returns an iterable of item stacks equipped as armor.Returns the block state at the entity's position.final int
final int
final int
double
getBodyY
(double heightScale) float
Returns the body yaw of the entity.final Box
float
Deprecated.protected int
final Vec3d
getCameraPosVec
(float tickDelta) Returns the chunk position of the entity.getClientCameraPosVec
(float tickDelta) Returns a command source which represents this entity.Returns all command tags the entity belongs to.Returns the passenger in control of this entity, ornull
if there is none.Returns the entity this entity rides and controls, ornull
if there is none.Returns the custom name of this object, ornull
if there is none.protected Text
Returns the default name of the entity.int
Returns the entity's default portal cooldown.getDimensions
(EntityPose pose) Returns the dimensions of the entity with the givenpose
.Returns the display name of this object.float
getEffectiveExplosionResistance
(Explosion explosion, BlockView world, BlockPos pos, BlockState blockState, FluidState fluidState, float max) Returns the blast resistance ofblockState
for an explosion caused by this entity.Returns the name uniquely identifying the entity.float
getEyeHeight
(EntityPose pose) Returns the eye height forpose
.protected float
getEyeHeight
(EntityPose pose, EntityDimensions dimensions) final Vec3d
Returns the position of the eye.double
getEyeY()
int
Returns the first passenger of the passenger list, ornull
if there is no passengers.protected boolean
getFlag
(int index) Returns the entity flag with indexflag
.double
getFluidHeight
(TagKey<Fluid> fluid) Returns the height of the fluid influid
tag.float
Returns the current freezing scale.int
Returns how long the entity is freezing, in ticks.Returns an iterable of item stacks held in the hands.getHandPosOffset
(Item item) Returns the offset of the hand that holdsitem
.float
Returns the head yaw of the entity.final float
Returns the height of the entity's current dimension.double
protected SoundEvent
protected HoverEvent
Returns the hover event referencing this entity.int
getId()
Returns the network ID of this entity.Returns an iterable of item stacks held in the hands or equipped as armor.protected float
protected BlockState
Deprecated.Deprecated.protected Vec3d
Returns the offset from the entity's position where the leash is attached to.getLeashOffset
(float tickDelta) getLeashPos
(float delta) Returns the position of the leash this entity holds.final Vec3d
getLerpedPos
(float delta) int
Returns the maximum amount of air the entity can hold, in ticks.int
Returns how long entities can be inside the nether portal without teleporting, in ticks.int
Returns how long it takes for the entity to be completely frozen and receive freezing damage, in ticks.double
protected Entity.MoveEffect
Returns the possible effect(s) of an entity moving.getName()
Returns the name of this object.float
final Vec3d
getOppositeRotationVector
(float tickDelta) protected final Vec3d
getOppositeRotationVector
(float pitch, float yaw) double
getParticleX
(double widthScale) double
getParticleZ
(double widthScale) protected static Vec3d
getPassengerDismountOffset
(double vehicleWidth, double passengerWidth, float passengerYaw) Returns the offset for dismounting the passenger.Returns the list of passengers of this entity.Returns an iterable of all passengers.protected int
Returns the permission level of this entity.Returns the stack for creative "pick block" functionality, ornull
if there is none.Returns the behavior of the piston for this entity.float
getPitch()
float
getPitch
(float tickDelta) int
protected Optional<BlockLocating.Rectangle>
getPortalRect
(ServerWorld destWorld, BlockPos destPos, boolean destIsNether, WorldBorder worldBorder) Returns the portal rect atdestPos
.getPos()
Returns the exact position of the entity.getPose()
protected BlockPos
getPosWithYOffset
(float offset) double
Returns the reason for the entity's removal, ornull
if it is not removed.static double
Returns the entity render distance multiplier.Returns the lowest entity this entity is riding.final Vec3d
getRotationVec
(float tickDelta) protected final Vec3d
getRotationVector
(float pitch, float yaw) int
Returns the maximum height of a fall the entity takes during pathfinding.Returns the scoreboard team the entity belongs to, ornull
if there is none.Returns the server the entity is in, ornull
if called on the client side.Returns the sound category for sounds from this entity.protected SoundEvent
getStackReference
(int mappedIndex) Obtains a stack reference to be modified.final float
Returns the standing eye height.float
Returns the block state at the stepping position.Returns the stepping position.protected BlockPos
getStepSoundPos
(BlockPos pos) double
Returns the minimum submerged height of this entity in fluid so that it would be affected by fluid physics.protected SoundEvent
Returns the position of the entity synced to clients.float
Returns the margin around the entity's bounding box where the entity targeting is still successful.int
Returns the team color value, or0xFFFFFF
if the entity is not in a team or the color is not set.protected @Nullable TeleportTarget
getTeleportTarget
(ServerWorld destination) Returns aTeleportTarget
for the entity based on its current and destination worlds, plus any nether portals that may be present.EntityType<?>
getType()
getUuid()
Returns the entity's UUID as string.Returns the entity this entity rides, ornull
if there is none.protected BlockPos
protected float
final float
getWidth()
Returns the width of the entity's current dimension.getWorld()
final double
getX()
final double
getY()
float
getYaw()
float
getYaw
(float tickDelta) final double
getZ()
boolean
handleAttack
(Entity attacker) Handles a player attacking the entity.boolean
handleFallDamage
(float fallDistance, float damageMultiplier, DamageSource damageSource) Called when an entity falls.void
handleStatus
(byte status) Called on the client when the entity receives an entity status from the server.protected boolean
hasCollidedSoftly
(Vec3d adjustedMovement) final boolean
Returns whether there is a passenger in control of this entity.boolean
Returns whether this object has a custom name.int
hashCode()
boolean
Returns whether the entity has no gravity.boolean
hasPassenger
(Predicate<Entity> predicate) Returns whether there is a passenger of this entity matchingpredicate
.boolean
hasPassenger
(Entity passenger) Returns whetherpassenger
is a passenger of this entity.boolean
hasPassengerDeep
(Entity passenger) Returns whetherpassenger
is riding this entity or any of its passengers.boolean
Returns whether another entity is riding this entity.boolean
hasPermissionLevel
(int permissionLevel) Returns whether this entity has at least permission levelpermissionLevel
.boolean
Returns whether a player is riding this entity or any of its passengers.boolean
Returns whether the entity's portal cooldown is in effect.boolean
Returns whether this entity is riding an entity.protected abstract void
Initializes data tracker.interact
(PlayerEntity player, Hand hand) Called when a player interacts with this entity.interactAt
(PlayerEntity player, Vec3d hitPos, Hand hand) Called when the player interacts with the entity at the specific position.boolean
isAlive()
Returns whether the entity is alive.boolean
Returns whether the entity can be attacked by players.private boolean
Returns whether it is raining at the entity's position.boolean
Returns whether other entities cannot occupy the same space with this entity.boolean
isConnectedThroughVehicle
(Entity entity) Returns whether this entity and another entity share the same root vehicle.boolean
Returns whether the entity is crawling.boolean
Returns whether the custom name should be shown.boolean
Returns whether the entity is actively descending.boolean
Returns whether the entity is immune to fire damage.protected boolean
Returns whether the entity is flapping their wings.boolean
isFrozen()
Returns whether the entity is frozen.boolean
Returns whether the entity is glowing, checking the entity flags on the client.final boolean
Returns whether the entity is glowing, without checking the entity flags.boolean
Returns whether the entity is immune from explosion knockback and damage.boolean
isInLava()
Returns whether the entity is in lava.boolean
isInPose
(EntityPose pose) boolean
Returns whether the distance between this entity andentity
is belowradius
.boolean
Returns whether both the horizontal and vertical distances between this entity andentity
are below the passed values.private boolean
Returns whether the block at the entity's position is a bubble column.boolean
Returns whether the entity is in a wall and should suffocate.boolean
Returns whether this entity is touching water or a bubble column.boolean
Returns whether the entity is in a crouching pose.boolean
Returns whether the entity is in swimming pose.boolean
Returns whether the entity is invisible to everyone.boolean
isInvisibleTo
(PlayerEntity player) Returns whether the entity is invisible toplayer
.boolean
Returns whether the entity is invulnerable.boolean
isInvulnerableTo
(DamageSource damageSource) Returns whether the entity is invulnerable todamageSource
.boolean
isLiving()
boolean
Returns whether the current side is responsible for updating the movement.boolean
isOnFire()
Returns whether the entity is on fire and is not fire immune.boolean
Returns whether the entity is on the ground.boolean
Returns whether this entity is part ofentity
.boolean
isPlayer()
boolean
Returns whether the entity can be pushed by other entities.boolean
Returns whether the entity is pushed by fluids.boolean
Returns whether any part of this entity's bounding box is in an unloaded region of the world the entity is in.final boolean
Returns whether the entity is removed.boolean
isSilent()
Returns whether the entity is silent.boolean
Returns whether the entity is sneaking.boolean
isSneaky()
boolean
Returns whether the entity is a spectator.boolean
Returns whether the entity is sprinting.boolean
isSubmergedIn
(TagKey<Fluid> fluidTag) Returns whether the entity is submerged in a fluid influidTag
.boolean
Returns whether this entity's hitbox is fully submerged in water.boolean
isSupportedBy
(BlockPos pos) boolean
Returns whether the entity is swimming.boolean
isTeammate
(Entity other) Returns whether this entity andother
are in the same team.boolean
isTeamPlayer
(AbstractTeam team) Returns whether this entity is inteam
.boolean
Returns whether this entity's hitbox is touching water fluid.boolean
Returns whether this entity is touching water or is being rained on (but does not check for a bubble column).boolean
isWet()
Returns whether this entity is touching water, or is being rained on, or is inside a bubble column.void
kill()
Kills the entity.void
Called when this entity is fall flying or on a lead.void
lookAt
(EntityAnchorArgumentType.EntityAnchor anchorPoint, Vec3d target) Changes this entity's pitch and yaw to look attarget
.void
move
(MovementType movementType, Vec3d movement) private static Vec3d
movementInputToVelocity
(Vec3d movementInput, float speed, float yaw) Returns a vector with the horizontal direction beingyaw
degrees and the absolute value beingmovementInput
normalized and multiplied byspeed
.moveToWorld
(ServerWorld destination) Moves this entity to another world.boolean
Returns whether the entity should not emit vibrations.double
offsetX
(double widthScale) double
offsetZ
(double widthScale) protected void
onBlockCollision
(BlockState state) Called when this entity's collision box intersectsstate
.void
onBubbleColumnCollision
(boolean drag) Called when the entity collides with a bubble column without an air above.void
onBubbleColumnSurfaceCollision
(boolean drag) Called when the entity collides with a bubble column with an air above.void
onDamaged
(DamageSource damageSource) void
onDataTrackerUpdate
(List<DataTracker.SerializedEntry<?>> dataEntries) boolean
onKilledOther
(ServerWorld world, LivingEntity other) Called when this entity killsother
.void
Called when the entity lands on a block.void
onPassengerLookAround
(Entity passenger) void
onPlayerCollision
(PlayerEntity player) Called when a player collides with the entity.void
Called on the client side when the entity is removed.void
onSpawnPacket
(EntitySpawnS2CPacket packet) Called on the client when the entity receives a spawn packet.void
Called whenplayer
starts tracking this entity.void
Called whenplayer
stops tracking this entity.void
onStruckByLightning
(ServerWorld world, LightningEntity lightning) Called when the entity is struck by lightning.protected void
void
onTrackedDataSet
(TrackedData<?> data) Called on the client when the tracked data is set.private void
protected void
playCombinationStepSounds
(BlockState primaryState, BlockState secondaryState) protected void
Plays theSoundEvents.ENTITY_GENERIC_EXTINGUISH_FIRE
sound.protected void
playSecondaryStepSound
(BlockState state) void
playSound
(SoundEvent sound, float volume, float pitch) void
playSoundIfNotSilent
(SoundEvent event) protected void
playStepSound
(BlockPos pos, BlockState state) private void
playStepSounds
(BlockPos pos, BlockState state) protected void
protected void
playSwimSound
(float volume) void
populateCrashReport
(CrashReportSection section) Populates the crash report section to include the entity's information.protected Vec3d
positionInPortal
(Direction.Axis portalAxis, BlockLocating.Rectangle portalRect) Returns the entity's position in the portal after teleportation.void
pushAwayFrom
(Entity entity) protected void
pushOutOfBlocks
(double x, double y, double z) Pushes this entity out of blocks.raycast
(double maxDistance, float tickDelta, boolean includeFluids) protected abstract void
Reads custom data fromnbt
.void
readNbt
(NbtCompound nbt) protected void
void
refreshPositionAfterTeleport
(double x, double y, double z) void
void
refreshPositionAndAngles
(double x, double y, double z, float yaw, float pitch) Sets the entity's position, yaw, and pitch, and refreshes several position-related fields.void
refreshPositionAndAngles
(BlockPos pos, float yaw, float pitch) Sets the entity's position, yaw, and pitch, and refreshes several position-related fields.protected void
Deprecated.void
remove
(Entity.RemovalReason reason) Removes the entity.void
Causes all passengers of this entity to stop riding this entity.private static Text
removeClickEvents
(Text textComponent) protected void
Removes this entity from the current dimension.protected void
removePassenger
(Entity passenger) Removespassenger
from the passengers.boolean
Removes a command tag from this entity.void
requestTeleport
(double destX, double destY, double destZ) Requests the entity to teleport to the given position.void
requestTeleportAndDismount
(double destX, double destY, double destZ) Requests the entity to teleport to the given position.void
requestTeleportOffset
(double offsetX, double offsetY, double offsetZ) Requests the entity to teleport to the current position offset by the given amount.void
Resets the entity's portal cooldown to the default.final void
boolean
saveNbt
(NbtCompound nbt) boolean
saveSelfNbt
(NbtCompound nbt) protected void
void
sendMessage
(Text message) Sends a system message.void
setAir
(int air) Sets the air left for the entity in ticks.void
setBodyYaw
(float bodyYaw) Sets the body yaw of this entity.final void
setBoundingBox
(Box boundingBox) void
setChangeListener
(EntityChangeListener changeListener) void
setCustomName
(@Nullable Text name) Sets the custom name of the entity toname
(ornull
to remove the custom name).void
setCustomNameVisible
(boolean visible) Sets whether the custom name should be shown.void
setFireTicks
(int fireTicks) Sets the entity on fire forticks
ticks.protected void
setFlag
(int index, boolean value) Sets the entity flag with indexflag
tovalue
.void
setFrozenTicks
(int frozenTicks) Sets how long the entity is freezing in ticks.final void
setGlowing
(boolean glowing) Sets whether the entity is glowing.void
setHeadYaw
(float headYaw) Sets the head yaw of this entity.void
setId
(int id) Sets the network ID of this entity.void
void
setInPowderSnow
(boolean inPowderSnow) void
setInvisible
(boolean invisible) Sets whether the entity is invisible to everyone.void
setInvulnerable
(boolean invulnerable) Sets whether the entity is invulnerable.void
setNoGravity
(boolean noGravity) Sets whether the entity has no gravity.void
setOnFire
(boolean onFire) void
setOnFireFor
(int seconds) Sets the entity on fire forseconds
seconds.void
Sets the entity on fire from lava, applies lava damage, and plays the burning sound.void
setOnGround
(boolean onGround) void
setPitch
(float pitch) void
setPortalCooldown
(int portalCooldown) final void
setPos
(double x, double y, double z) Sets the position of this entity.void
setPose
(EntityPose pose) void
setPosition
(double x, double y, double z) Sets the position and refreshes the bounding box.final void
setPosition
(Vec3d pos) Sets the position and refreshes the bounding box.final void
setRemoved
(Entity.RemovalReason reason) static void
setRenderDistanceMultiplier
(double value) Sets the render distance multiplier.protected void
setRotation
(float yaw, float pitch) Sets the entity's yaw and pitch.void
setSilent
(boolean silent) Sets whether the entity is silent.void
setSneaking
(boolean sneaking) Sets whether the entity is sneaking.void
setSprinting
(boolean sprinting) Sets whether the entity is sprinting.void
setStepHeight
(float stepHeight) void
setSwimming
(boolean swimming) Sets whether the entity is swimming.void
Sets the UUID of the entity touuid
.void
setVelocity
(double x, double y, double z) void
setVelocity
(Vec3d velocity) void
setVelocityClient
(double x, double y, double z) protected void
void
setYaw
(float yaw) boolean
boolean
Returns whether this vehicle should dismount the passenger if submerged underwater.boolean
Returns whether the entity should escape from powder snow.private boolean
boolean
boolean
shouldRender
(double distance) boolean
shouldRender
(double cameraX, double cameraY, double cameraZ) boolean
Returns whether to render the name of the entity.boolean
protected boolean
boolean
boolean
void
slowMovement
(BlockState state, Vec3d multiplier) CallsonLanding()
and slows this entity.protected void
double
squaredDistanceTo
(double x, double y, double z) Returns the squared distance between this entity and the given position.double
squaredDistanceTo
(Entity entity) Returns the squared distance between this entity andentity
.double
squaredDistanceTo
(Vec3d vector) Returns the squared distance between this entity and the given position.boolean
startRiding
(Entity entity) Starts ridingentity
.boolean
startRiding
(Entity entity, boolean force) Starts ridingentity
.private boolean
stepOnBlock
(BlockPos pos, BlockState state, boolean playSound, boolean emitEvent, Vec3d movement) void
Stops riding the vehicle if present.Returns a recursive stream of all passengers.Returns a stream consisting of this entity and its passengers in which this entity's passengers are iterated before this entity.Returns a stream consisting of this entity and its passengers recursively.final void
teleport
(double destX, double destY, double destZ) Teleports the entity to the given position, loading the chunk withChunkTicketType.POST_TELEPORT
.boolean
teleport
(ServerWorld world, double destX, double destY, double destZ, Set<PositionFlag> flags, float yaw, float pitch) Teleports the entity to the given position.private void
void
tick()
Ticks this entity.protected void
Called when the entity is 64 blocks below the world's minimum Y position.protected void
protected void
void
protected NbtList
toNbtList
(double[] values) protected NbtList
toNbtList
(float[] values) toString()
protected void
protected void
Unsets this entity's removal.void
updateEventHandler
(BiConsumer<EntityGameEventHandler<?>, ServerWorld> callback) Called when the entity is loaded to register game event handlers.void
updateKilledAdvancementCriterion
(Entity entityKilled, int score, DamageSource damageSource) boolean
updateMovementInFluid
(TagKey<Fluid> tag, double speed) updatePassengerForDismount
(LivingEntity passenger) Returns the position of the dismountedpassenger
.void
updatePassengerPosition
(Entity passenger) private void
updatePassengerPosition
(Entity passenger, Entity.PositionUpdater positionUpdater) void
updatePosition
(double x, double y, double z) void
updatePositionAndAngles
(double x, double y, double z, float yaw, float pitch) private void
protected void
updateSupportingBlockPos
(boolean onGround) void
void
updateTrackedHeadRotation
(float yaw, int interpolationSteps) void
updateTrackedPosition
(double x, double y, double z) void
updateTrackedPositionAndAngles
(double x, double y, double z, float yaw, float pitch, int interpolationSteps, boolean interpolate) void
updateVelocity
(float speed, Vec3d movementInput) Updates the entity's velocity to add a vector in the direction of the entity's yaw whose absolute value ismovementInput
normalized and multiplied byspeed
.protected boolean
protected boolean
Returnstrue
if the entity would not collide with blocks if the pose ispose
.protected abstract void
Writes custom data tonbt
.writeNbt
(NbtCompound nbt) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.server.command.CommandOutput
cannotBeSilenced
-
Field Details
-
LOGGER
- Mappings:
Namespace Name Mixin selector official c
Lbfh;c:Lorg/slf4j/Logger;
intermediary field_5955
Lnet/minecraft/class_1297;field_5955:Lorg/slf4j/Logger;
named LOGGER
Lnet/minecraft/entity/Entity;LOGGER:Lorg/slf4j/Logger;
-
ID_KEY
- See Also:
- Mappings:
Namespace Name Mixin selector official v
Lbfh;v:Ljava/lang/String;
intermediary field_29985
Lnet/minecraft/class_1297;field_29985:Ljava/lang/String;
named ID_KEY
Lnet/minecraft/entity/Entity;ID_KEY:Ljava/lang/String;
-
PASSENGERS_KEY
- See Also:
- Mappings:
Namespace Name Mixin selector official w
Lbfh;w:Ljava/lang/String;
intermediary field_29986
Lnet/minecraft/class_1297;field_29986:Ljava/lang/String;
named PASSENGERS_KEY
Lnet/minecraft/entity/Entity;PASSENGERS_KEY:Ljava/lang/String;
-
CURRENT_ID
A generator of unique entitynetwork IDs
. The generated ID for client entities are useless and discarded subsequently throughsetId(int)
calls.- Mappings:
Namespace Name Mixin selector official d
Lbfh;d:Ljava/util/concurrent/atomic/AtomicInteger;
intermediary field_5978
Lnet/minecraft/class_1297;field_5978:Ljava/util/concurrent/atomic/AtomicInteger;
named CURRENT_ID
Lnet/minecraft/entity/Entity;CURRENT_ID:Ljava/util/concurrent/atomic/AtomicInteger;
-
EMPTY_STACK_LIST
- Mappings:
Namespace Name Mixin selector official e
Lbfh;e:Ljava/util/List;
intermediary field_6030
Lnet/minecraft/class_1297;field_6030:Ljava/util/List;
named EMPTY_STACK_LIST
Lnet/minecraft/entity/Entity;EMPTY_STACK_LIST:Ljava/util/List;
-
MAX_RIDING_COOLDOWN
public static final int MAX_RIDING_COOLDOWN- See Also:
- Mappings:
Namespace Name Mixin selector official x
Lbfh;x:I
intermediary field_29987
Lnet/minecraft/class_1297;field_29987:I
named MAX_RIDING_COOLDOWN
Lnet/minecraft/entity/Entity;MAX_RIDING_COOLDOWN:I
-
DEFAULT_PORTAL_COOLDOWN
public static final int DEFAULT_PORTAL_COOLDOWN- See Also:
- Mappings:
Namespace Name Mixin selector official y
Lbfh;y:I
intermediary field_29988
Lnet/minecraft/class_1297;field_29988:I
named DEFAULT_PORTAL_COOLDOWN
Lnet/minecraft/entity/Entity;DEFAULT_PORTAL_COOLDOWN:I
-
MAX_COMMAND_TAGS
public static final int MAX_COMMAND_TAGS- See Also:
- Mappings:
Namespace Name Mixin selector official z
Lbfh;z:I
intermediary field_29989
Lnet/minecraft/class_1297;field_29989:I
named MAX_COMMAND_TAGS
Lnet/minecraft/entity/Entity;MAX_COMMAND_TAGS:I
-
field_44870
public static final float field_44870- See Also:
- Mappings:
Namespace Name Mixin selector official A
Lbfh;A:F
intermediary field_44870
Lnet/minecraft/class_1297;field_44870:F
named field_44870
Lnet/minecraft/entity/Entity;field_44870:F
-
field_44871
public static final double field_44871- See Also:
- Mappings:
Namespace Name Mixin selector official B
Lbfh;B:D
intermediary field_44871
Lnet/minecraft/class_1297;field_44871:D
named field_44871
Lnet/minecraft/entity/Entity;field_44871:D
-
field_44872
public static final double field_44872- See Also:
- Mappings:
Namespace Name Mixin selector official C
Lbfh;C:D
intermediary field_44872
Lnet/minecraft/class_1297;field_44872:D
named field_44872
Lnet/minecraft/entity/Entity;field_44872:D
-
field_29991
public static final float field_29991- See Also:
- Mappings:
Namespace Name Mixin selector official D
Lbfh;D:F
intermediary field_29991
Lnet/minecraft/class_1297;field_29991:F
named field_29991
Lnet/minecraft/entity/Entity;field_29991:F
-
DEFAULT_MIN_FREEZE_DAMAGE_TICKS
public static final int DEFAULT_MIN_FREEZE_DAMAGE_TICKS- See Also:
- Mappings:
Namespace Name Mixin selector official E
Lbfh;E:I
intermediary field_29992
Lnet/minecraft/class_1297;field_29992:I
named DEFAULT_MIN_FREEZE_DAMAGE_TICKS
Lnet/minecraft/entity/Entity;DEFAULT_MIN_FREEZE_DAMAGE_TICKS:I
-
FREEZING_DAMAGE_INTERVAL
public static final int FREEZING_DAMAGE_INTERVAL- See Also:
- Mappings:
Namespace Name Mixin selector official F
Lbfh;F:I
intermediary field_29993
Lnet/minecraft/class_1297;field_29993:I
named FREEZING_DAMAGE_INTERVAL
Lnet/minecraft/entity/Entity;FREEZING_DAMAGE_INTERVAL:I
-
NULL_BOX
- Mappings:
Namespace Name Mixin selector official k
Lbfh;k:Ledv;
intermediary field_6025
Lnet/minecraft/class_1297;field_6025:Lnet/minecraft/class_238;
named NULL_BOX
Lnet/minecraft/entity/Entity;NULL_BOX:Lnet/minecraft/util/math/Box;
-
SPEED_IN_WATER
private static final double SPEED_IN_WATER- See Also:
- Mappings:
Namespace Name Mixin selector official l
Lbfh;l:D
intermediary field_29984
Lnet/minecraft/class_1297;field_29984:D
named SPEED_IN_WATER
Lnet/minecraft/entity/Entity;SPEED_IN_WATER:D
-
SPEED_IN_LAVA_IN_NETHER
private static final double SPEED_IN_LAVA_IN_NETHER- See Also:
- Mappings:
Namespace Name Mixin selector official m
Lbfh;m:D
intermediary field_29982
Lnet/minecraft/class_1297;field_29982:D
named SPEED_IN_LAVA_IN_NETHER
Lnet/minecraft/entity/Entity;SPEED_IN_LAVA_IN_NETHER:D
-
SPEED_IN_LAVA
private static final double SPEED_IN_LAVA- See Also:
- Mappings:
Namespace Name Mixin selector official n
Lbfh;n:D
intermediary field_29983
Lnet/minecraft/class_1297;field_29983:D
named SPEED_IN_LAVA
Lnet/minecraft/entity/Entity;SPEED_IN_LAVA:D
-
UUID_KEY
- See Also:
- Mappings:
Namespace Name Mixin selector official G
Lbfh;G:Ljava/lang/String;
intermediary field_29994
Lnet/minecraft/class_1297;field_29994:Ljava/lang/String;
named UUID_KEY
Lnet/minecraft/entity/Entity;UUID_KEY:Ljava/lang/String;
-
renderDistanceMultiplier
private static double renderDistanceMultiplier- Mappings:
Namespace Name Mixin selector official o
Lbfh;o:D
intermediary field_5999
Lnet/minecraft/class_1297;field_5999:D
named renderDistanceMultiplier
Lnet/minecraft/entity/Entity;renderDistanceMultiplier:D
-
DEFAULT_FRICTION
public static final float DEFAULT_FRICTIONThe factor by which an entity's speed is reduced every tick.For example:
horizontalSpeed = velocity.horizontalSpeed() * FRICTION_RATE
- See Also:
- Mappings:
Namespace Name Mixin selector official U
Lbfh;U:F
intermediary field_29973
Lnet/minecraft/class_1297;field_29973:F
named DEFAULT_FRICTION
Lnet/minecraft/entity/Entity;DEFAULT_FRICTION:F
-
MIN_RISING_BUBBLE_COLUMN_SPEED
public static final float MIN_RISING_BUBBLE_COLUMN_SPEED- See Also:
- Mappings:
Namespace Name Mixin selector official V
Lbfh;V:F
intermediary field_29974
Lnet/minecraft/class_1297;field_29974:F
named MIN_RISING_BUBBLE_COLUMN_SPEED
Lnet/minecraft/entity/Entity;MIN_RISING_BUBBLE_COLUMN_SPEED:F
-
FLAGS
- Mappings:
Namespace Name Mixin selector official an
Lbfh;an:Laby;
intermediary field_5990
Lnet/minecraft/class_1297;field_5990:Lnet/minecraft/class_2940;
named FLAGS
Lnet/minecraft/entity/Entity;FLAGS:Lnet/minecraft/entity/data/TrackedData;
-
ON_FIRE_FLAG_INDEX
protected static final int ON_FIRE_FLAG_INDEX- See Also:
- Mappings:
Namespace Name Mixin selector official ao
Lbfh;ao:I
intermediary field_29979
Lnet/minecraft/class_1297;field_29979:I
named ON_FIRE_FLAG_INDEX
Lnet/minecraft/entity/Entity;ON_FIRE_FLAG_INDEX:I
-
SNEAKING_FLAG_INDEX
private static final int SNEAKING_FLAG_INDEX- See Also:
- Mappings:
Namespace Name Mixin selector official aP
Lbfh;aP:I
intermediary field_29975
Lnet/minecraft/class_1297;field_29975:I
named SNEAKING_FLAG_INDEX
Lnet/minecraft/entity/Entity;SNEAKING_FLAG_INDEX:I
-
SPRINTING_FLAG_INDEX
private static final int SPRINTING_FLAG_INDEX- See Also:
- Mappings:
Namespace Name Mixin selector official aQ
Lbfh;aQ:I
intermediary field_29976
Lnet/minecraft/class_1297;field_29976:I
named SPRINTING_FLAG_INDEX
Lnet/minecraft/entity/Entity;SPRINTING_FLAG_INDEX:I
-
SWIMMING_FLAG_INDEX
private static final int SWIMMING_FLAG_INDEX- See Also:
- Mappings:
Namespace Name Mixin selector official aR
Lbfh;aR:I
intermediary field_29977
Lnet/minecraft/class_1297;field_29977:I
named SWIMMING_FLAG_INDEX
Lnet/minecraft/entity/Entity;SWIMMING_FLAG_INDEX:I
-
INVISIBLE_FLAG_INDEX
private static final int INVISIBLE_FLAG_INDEX- See Also:
- Mappings:
Namespace Name Mixin selector official aS
Lbfh;aS:I
intermediary field_29978
Lnet/minecraft/class_1297;field_29978:I
named INVISIBLE_FLAG_INDEX
Lnet/minecraft/entity/Entity;INVISIBLE_FLAG_INDEX:I
-
GLOWING_FLAG_INDEX
protected static final int GLOWING_FLAG_INDEX- See Also:
- Mappings:
Namespace Name Mixin selector official ap
Lbfh;ap:I
intermediary field_29980
Lnet/minecraft/class_1297;field_29980:I
named GLOWING_FLAG_INDEX
Lnet/minecraft/entity/Entity;GLOWING_FLAG_INDEX:I
-
FALL_FLYING_FLAG_INDEX
protected static final int FALL_FLYING_FLAG_INDEX- See Also:
- Mappings:
Namespace Name Mixin selector official aq
Lbfh;aq:I
intermediary field_29981
Lnet/minecraft/class_1297;field_29981:I
named FALL_FLYING_FLAG_INDEX
Lnet/minecraft/entity/Entity;FALL_FLYING_FLAG_INDEX:I
-
AIR
- Mappings:
Namespace Name Mixin selector official aT
Lbfh;aT:Laby;
intermediary field_6032
Lnet/minecraft/class_1297;field_6032:Lnet/minecraft/class_2940;
named AIR
Lnet/minecraft/entity/Entity;AIR:Lnet/minecraft/entity/data/TrackedData;
-
CUSTOM_NAME
- Mappings:
Namespace Name Mixin selector official aU
Lbfh;aU:Laby;
intermediary field_6027
Lnet/minecraft/class_1297;field_6027:Lnet/minecraft/class_2940;
named CUSTOM_NAME
Lnet/minecraft/entity/Entity;CUSTOM_NAME:Lnet/minecraft/entity/data/TrackedData;
-
NAME_VISIBLE
- Mappings:
Namespace Name Mixin selector official aV
Lbfh;aV:Laby;
intermediary field_5975
Lnet/minecraft/class_1297;field_5975:Lnet/minecraft/class_2940;
named NAME_VISIBLE
Lnet/minecraft/entity/Entity;NAME_VISIBLE:Lnet/minecraft/entity/data/TrackedData;
-
SILENT
- Mappings:
Namespace Name Mixin selector official aW
Lbfh;aW:Laby;
intermediary field_5962
Lnet/minecraft/class_1297;field_5962:Lnet/minecraft/class_2940;
named SILENT
Lnet/minecraft/entity/Entity;SILENT:Lnet/minecraft/entity/data/TrackedData;
-
NO_GRAVITY
- Mappings:
Namespace Name Mixin selector official aX
Lbfh;aX:Laby;
intermediary field_5995
Lnet/minecraft/class_1297;field_5995:Lnet/minecraft/class_2940;
named NO_GRAVITY
Lnet/minecraft/entity/Entity;NO_GRAVITY:Lnet/minecraft/entity/data/TrackedData;
-
POSE
- Mappings:
Namespace Name Mixin selector official ar
Lbfh;ar:Laby;
intermediary field_18064
Lnet/minecraft/class_1297;field_18064:Lnet/minecraft/class_2940;
named POSE
Lnet/minecraft/entity/Entity;POSE:Lnet/minecraft/entity/data/TrackedData;
-
FROZEN_TICKS
- Mappings:
Namespace Name Mixin selector official aY
Lbfh;aY:Laby;
intermediary field_27858
Lnet/minecraft/class_1297;field_27858:Lnet/minecraft/class_2940;
named FROZEN_TICKS
Lnet/minecraft/entity/Entity;FROZEN_TICKS:Lnet/minecraft/entity/data/TrackedData;
-
type
- Mappings:
Namespace Name Mixin selector official p
Lbfh;p:Lbfl;
intermediary field_5961
Lnet/minecraft/class_1297;field_5961:Lnet/minecraft/class_1299;
named type
Lnet/minecraft/entity/Entity;type:Lnet/minecraft/entity/EntityType;
-
id
private int idThe entity's network ID, used as a reference for synchronization over network. This is not persistent across save and loads; useuuid
to identify an entity in those cases.- See Also:
- Mappings:
Namespace Name Mixin selector official q
Lbfh;q:I
intermediary field_5986
Lnet/minecraft/class_1297;field_5986:I
named id
Lnet/minecraft/entity/Entity;id:I
-
intersectionChecked
public boolean intersectionCheckedWhether the entity should be included in intersection checks.An intersection check is used to prevent block placement or mob spawning within the bounding box.
- Implementation Note:
- Intersection is always checked for
BoatEntity
,AbstractMinecartEntity
,TntEntity
,EndCrystalEntity
,FallingBlockEntity
, andLivingEntity
. Intersection withArmorStandEntity
is checked if it is not amarker
. - Mappings:
Namespace Name Mixin selector official H
Lbfh;H:Z
intermediary field_23807
Lnet/minecraft/class_1297;field_23807:Z
named intersectionChecked
Lnet/minecraft/entity/Entity;intersectionChecked:Z
-
passengerList
- Mappings:
Namespace Name Mixin selector official r
Lbfh;r:Lcom/google/common/collect/ImmutableList;
intermediary field_5979
Lnet/minecraft/class_1297;field_5979:Lcom/google/common/collect/ImmutableList;
named passengerList
Lnet/minecraft/entity/Entity;passengerList:Lcom/google/common/collect/ImmutableList;
-
ridingCooldown
protected int ridingCooldown- Mappings:
Namespace Name Mixin selector official I
Lbfh;I:I
intermediary field_5951
Lnet/minecraft/class_1297;field_5951:I
named ridingCooldown
Lnet/minecraft/entity/Entity;ridingCooldown:I
-
vehicle
- Mappings:
Namespace Name Mixin selector official s
Lbfh;s:Lbfh;
intermediary field_6034
Lnet/minecraft/class_1297;field_6034:Lnet/minecraft/class_1297;
named vehicle
Lnet/minecraft/entity/Entity;vehicle:Lnet/minecraft/entity/Entity;
-
world
- Mappings:
Namespace Name Mixin selector official t
Lbfh;t:Lcmk;
intermediary field_6002
Lnet/minecraft/class_1297;field_6002:Lnet/minecraft/class_1937;
named world
Lnet/minecraft/entity/Entity;world:Lnet/minecraft/world/World;
-
prevX
public double prevX- Mappings:
Namespace Name Mixin selector official J
Lbfh;J:D
intermediary field_6014
Lnet/minecraft/class_1297;field_6014:D
named prevX
Lnet/minecraft/entity/Entity;prevX:D
-
prevY
public double prevY- Mappings:
Namespace Name Mixin selector official K
Lbfh;K:D
intermediary field_6036
Lnet/minecraft/class_1297;field_6036:D
named prevY
Lnet/minecraft/entity/Entity;prevY:D
-
prevZ
public double prevZ- Mappings:
Namespace Name Mixin selector official L
Lbfh;L:D
intermediary field_5969
Lnet/minecraft/class_1297;field_5969:D
named prevZ
Lnet/minecraft/entity/Entity;prevZ:D
-
pos
- Mappings:
Namespace Name Mixin selector official u
Lbfh;u:Leea;
intermediary field_22467
Lnet/minecraft/class_1297;field_22467:Lnet/minecraft/class_243;
named pos
Lnet/minecraft/entity/Entity;pos:Lnet/minecraft/util/math/Vec3d;
-
blockPos
- Mappings:
Namespace Name Mixin selector official aD
Lbfh;aD:Lgu;
intermediary field_22468
Lnet/minecraft/class_1297;field_22468:Lnet/minecraft/class_2338;
named blockPos
Lnet/minecraft/entity/Entity;blockPos:Lnet/minecraft/util/math/BlockPos;
-
chunkPos
- Mappings:
Namespace Name Mixin selector official aE
Lbfh;aE:Lclr;
intermediary field_35101
Lnet/minecraft/class_1297;field_35101:Lnet/minecraft/class_1923;
named chunkPos
Lnet/minecraft/entity/Entity;chunkPos:Lnet/minecraft/util/math/ChunkPos;
-
velocity
- Mappings:
Namespace Name Mixin selector official aF
Lbfh;aF:Leea;
intermediary field_18276
Lnet/minecraft/class_1297;field_18276:Lnet/minecraft/class_243;
named velocity
Lnet/minecraft/entity/Entity;velocity:Lnet/minecraft/util/math/Vec3d;
-
yaw
private float yaw- Mappings:
Namespace Name Mixin selector official aG
Lbfh;aG:F
intermediary field_6031
Lnet/minecraft/class_1297;field_6031:F
named yaw
Lnet/minecraft/entity/Entity;yaw:F
-
pitch
private float pitch- Mappings:
Namespace Name Mixin selector official aH
Lbfh;aH:F
intermediary field_5965
Lnet/minecraft/class_1297;field_5965:F
named pitch
Lnet/minecraft/entity/Entity;pitch:F
-
prevYaw
public float prevYaw- Mappings:
Namespace Name Mixin selector official M
Lbfh;M:F
intermediary field_5982
Lnet/minecraft/class_1297;field_5982:F
named prevYaw
Lnet/minecraft/entity/Entity;prevYaw:F
-
prevPitch
public float prevPitch- Mappings:
Namespace Name Mixin selector official N
Lbfh;N:F
intermediary field_6004
Lnet/minecraft/class_1297;field_6004:F
named prevPitch
Lnet/minecraft/entity/Entity;prevPitch:F
-
boundingBox
- Mappings:
Namespace Name Mixin selector official aI
Lbfh;aI:Ledv;
intermediary field_6005
Lnet/minecraft/class_1297;field_6005:Lnet/minecraft/class_238;
named boundingBox
Lnet/minecraft/entity/Entity;boundingBox:Lnet/minecraft/util/math/Box;
-
onGround
private boolean onGround- Mappings:
Namespace Name Mixin selector official aJ
Lbfh;aJ:Z
intermediary field_5952
Lnet/minecraft/class_1297;field_5952:Z
named onGround
Lnet/minecraft/entity/Entity;onGround:Z
-
horizontalCollision
public boolean horizontalCollision- Mappings:
Namespace Name Mixin selector official O
Lbfh;O:Z
intermediary field_5976
Lnet/minecraft/class_1297;field_5976:Z
named horizontalCollision
Lnet/minecraft/entity/Entity;horizontalCollision:Z
-
verticalCollision
public boolean verticalCollision- Mappings:
Namespace Name Mixin selector official P
Lbfh;P:Z
intermediary field_5992
Lnet/minecraft/class_1297;field_5992:Z
named verticalCollision
Lnet/minecraft/entity/Entity;verticalCollision:Z
-
groundCollision
public boolean groundCollision- Mappings:
Namespace Name Mixin selector official Q
Lbfh;Q:Z
intermediary field_36331
Lnet/minecraft/class_1297;field_36331:Z
named groundCollision
Lnet/minecraft/entity/Entity;groundCollision:Z
-
collidedSoftly
public boolean collidedSoftly- Mappings:
Namespace Name Mixin selector official R
Lbfh;R:Z
intermediary field_34927
Lnet/minecraft/class_1297;field_34927:Z
named collidedSoftly
Lnet/minecraft/entity/Entity;collidedSoftly:Z
-
velocityModified
public boolean velocityModified- Mappings:
Namespace Name Mixin selector official S
Lbfh;S:Z
intermediary field_6037
Lnet/minecraft/class_1297;field_6037:Z
named velocityModified
Lnet/minecraft/entity/Entity;velocityModified:Z
-
movementMultiplier
- Mappings:
Namespace Name Mixin selector official T
Lbfh;T:Leea;
intermediary field_17046
Lnet/minecraft/class_1297;field_17046:Lnet/minecraft/class_243;
named movementMultiplier
Lnet/minecraft/entity/Entity;movementMultiplier:Lnet/minecraft/util/math/Vec3d;
-
removalReason
- Mappings:
Namespace Name Mixin selector official aK
Lbfh;aK:Lbfh$c;
intermediary field_26995
Lnet/minecraft/class_1297;field_26995:Lnet/minecraft/class_1297$class_5529;
named removalReason
Lnet/minecraft/entity/Entity;removalReason:Lnet/minecraft/entity/Entity$RemovalReason;
-
prevHorizontalSpeed
public float prevHorizontalSpeed- Mappings:
Namespace Name Mixin selector official W
Lbfh;W:F
intermediary field_6039
Lnet/minecraft/class_1297;field_6039:F
named prevHorizontalSpeed
Lnet/minecraft/entity/Entity;prevHorizontalSpeed:F
-
horizontalSpeed
public float horizontalSpeed- Mappings:
Namespace Name Mixin selector official X
Lbfh;X:F
intermediary field_5973
Lnet/minecraft/class_1297;field_5973:F
named horizontalSpeed
Lnet/minecraft/entity/Entity;horizontalSpeed:F
-
distanceTraveled
public float distanceTraveled- Mappings:
Namespace Name Mixin selector official Y
Lbfh;Y:F
intermediary field_5994
Lnet/minecraft/class_1297;field_5994:F
named distanceTraveled
Lnet/minecraft/entity/Entity;distanceTraveled:F
-
speed
public float speed- Mappings:
Namespace Name Mixin selector official Z
Lbfh;Z:F
intermediary field_28627
Lnet/minecraft/class_1297;field_28627:F
named speed
Lnet/minecraft/entity/Entity;speed:F
-
fallDistance
public float fallDistance- Mappings:
Namespace Name Mixin selector official aa
Lbfh;aa:F
intermediary field_6017
Lnet/minecraft/class_1297;field_6017:F
named fallDistance
Lnet/minecraft/entity/Entity;fallDistance:F
-
nextStepSoundDistance
private float nextStepSoundDistance- Mappings:
Namespace Name Mixin selector official aL
Lbfh;aL:F
intermediary field_6003
Lnet/minecraft/class_1297;field_6003:F
named nextStepSoundDistance
Lnet/minecraft/entity/Entity;nextStepSoundDistance:F
-
lastRenderX
public double lastRenderX- Mappings:
Namespace Name Mixin selector official ab
Lbfh;ab:D
intermediary field_6038
Lnet/minecraft/class_1297;field_6038:D
named lastRenderX
Lnet/minecraft/entity/Entity;lastRenderX:D
-
lastRenderY
public double lastRenderY- Mappings:
Namespace Name Mixin selector official ac
Lbfh;ac:D
intermediary field_5971
Lnet/minecraft/class_1297;field_5971:D
named lastRenderY
Lnet/minecraft/entity/Entity;lastRenderY:D
-
lastRenderZ
public double lastRenderZ- Mappings:
Namespace Name Mixin selector official ad
Lbfh;ad:D
intermediary field_5989
Lnet/minecraft/class_1297;field_5989:D
named lastRenderZ
Lnet/minecraft/entity/Entity;lastRenderZ:D
-
stepHeight
private float stepHeight- Mappings:
Namespace Name Mixin selector official aM
Lbfh;aM:F
intermediary field_6013
Lnet/minecraft/class_1297;field_6013:F
named stepHeight
Lnet/minecraft/entity/Entity;stepHeight:F
-
noClip
public boolean noClip- Mappings:
Namespace Name Mixin selector official ae
Lbfh;ae:Z
intermediary field_5960
Lnet/minecraft/class_1297;field_5960:Z
named noClip
Lnet/minecraft/entity/Entity;noClip:Z
-
random
- Mappings:
Namespace Name Mixin selector official af
Lbfh;af:Lapf;
intermediary field_5974
Lnet/minecraft/class_1297;field_5974:Lnet/minecraft/class_5819;
named random
Lnet/minecraft/entity/Entity;random:Lnet/minecraft/util/math/random/Random;
-
age
public int age- Mappings:
Namespace Name Mixin selector official ag
Lbfh;ag:I
intermediary field_6012
Lnet/minecraft/class_1297;field_6012:I
named age
Lnet/minecraft/entity/Entity;age:I
-
fireTicks
private int fireTicks- Mappings:
Namespace Name Mixin selector official aN
Lbfh;aN:I
intermediary field_5956
Lnet/minecraft/class_1297;field_5956:I
named fireTicks
Lnet/minecraft/entity/Entity;fireTicks:I
-
touchingWater
protected boolean touchingWater- Mappings:
Namespace Name Mixin selector official ah
Lbfh;ah:Z
intermediary field_5957
Lnet/minecraft/class_1297;field_5957:Z
named touchingWater
Lnet/minecraft/entity/Entity;touchingWater:Z
-
fluidHeight
- Mappings:
Namespace Name Mixin selector official ai
Lbfh;ai:Lit/unimi/dsi/fastutil/objects/Object2DoubleMap;
intermediary field_5964
Lnet/minecraft/class_1297;field_5964:Lit/unimi/dsi/fastutil/objects/Object2DoubleMap;
named fluidHeight
Lnet/minecraft/entity/Entity;fluidHeight:Lit/unimi/dsi/fastutil/objects/Object2DoubleMap;
-
submergedInWater
protected boolean submergedInWater- Mappings:
Namespace Name Mixin selector official aj
Lbfh;aj:Z
intermediary field_6000
Lnet/minecraft/class_1297;field_6000:Z
named submergedInWater
Lnet/minecraft/entity/Entity;submergedInWater:Z
-
submergedFluidTag
- Mappings:
Namespace Name Mixin selector official aO
Lbfh;aO:Ljava/util/Set;
intermediary field_25599
Lnet/minecraft/class_1297;field_25599:Ljava/util/Set;
named submergedFluidTag
Lnet/minecraft/entity/Entity;submergedFluidTag:Ljava/util/Set;
-
timeUntilRegen
public int timeUntilRegen- Mappings:
Namespace Name Mixin selector official ak
Lbfh;ak:I
intermediary field_6008
Lnet/minecraft/class_1297;field_6008:I
named timeUntilRegen
Lnet/minecraft/entity/Entity;timeUntilRegen:I
-
firstUpdate
protected boolean firstUpdate- Mappings:
Namespace Name Mixin selector official al
Lbfh;al:Z
intermediary field_5953
Lnet/minecraft/class_1297;field_5953:Z
named firstUpdate
Lnet/minecraft/entity/Entity;firstUpdate:Z
-
dataTracker
- Mappings:
Namespace Name Mixin selector official am
Lbfh;am:Lacb;
intermediary field_6011
Lnet/minecraft/class_1297;field_6011:Lnet/minecraft/class_2945;
named dataTracker
Lnet/minecraft/entity/Entity;dataTracker:Lnet/minecraft/entity/data/DataTracker;
-
changeListener
- Mappings:
Namespace Name Mixin selector official aZ
Lbfh;aZ:Ldfq;
intermediary field_26996
Lnet/minecraft/class_1297;field_26996:Lnet/minecraft/class_5569;
named changeListener
Lnet/minecraft/entity/Entity;changeListener:Lnet/minecraft/world/entity/EntityChangeListener;
-
trackedPosition
- Mappings:
Namespace Name Mixin selector official ba
Lbfh;ba:Laaz;
intermediary field_38931
Lnet/minecraft/class_1297;field_38931:Lnet/minecraft/class_7422;
named trackedPosition
Lnet/minecraft/entity/Entity;trackedPosition:Lnet/minecraft/entity/TrackedPosition;
-
ignoreCameraFrustum
public boolean ignoreCameraFrustum- Mappings:
Namespace Name Mixin selector official as
Lbfh;as:Z
intermediary field_5985
Lnet/minecraft/class_1297;field_5985:Z
named ignoreCameraFrustum
Lnet/minecraft/entity/Entity;ignoreCameraFrustum:Z
-
velocityDirty
public boolean velocityDirty- Mappings:
Namespace Name Mixin selector official at
Lbfh;at:Z
intermediary field_6007
Lnet/minecraft/class_1297;field_6007:Z
named velocityDirty
Lnet/minecraft/entity/Entity;velocityDirty:Z
-
portalCooldown
private int portalCooldown- Mappings:
Namespace Name Mixin selector official bb
Lbfh;bb:I
intermediary field_6018
Lnet/minecraft/class_1297;field_6018:I
named portalCooldown
Lnet/minecraft/entity/Entity;portalCooldown:I
-
inNetherPortal
protected boolean inNetherPortal- Mappings:
Namespace Name Mixin selector official au
Lbfh;au:Z
intermediary field_5963
Lnet/minecraft/class_1297;field_5963:Z
named inNetherPortal
Lnet/minecraft/entity/Entity;inNetherPortal:Z
-
netherPortalTime
protected int netherPortalTime- Mappings:
Namespace Name Mixin selector official av
Lbfh;av:I
intermediary field_5972
Lnet/minecraft/class_1297;field_5972:I
named netherPortalTime
Lnet/minecraft/entity/Entity;netherPortalTime:I
-
lastNetherPortalPosition
- Mappings:
Namespace Name Mixin selector official aw
Lbfh;aw:Lgu;
intermediary field_5991
Lnet/minecraft/class_1297;field_5991:Lnet/minecraft/class_2338;
named lastNetherPortalPosition
Lnet/minecraft/entity/Entity;lastNetherPortalPosition:Lnet/minecraft/util/math/BlockPos;
-
invulnerable
private boolean invulnerable- Mappings:
Namespace Name Mixin selector official bc
Lbfh;bc:Z
intermediary field_6009
Lnet/minecraft/class_1297;field_6009:Z
named invulnerable
Lnet/minecraft/entity/Entity;invulnerable:Z
-
uuid
- Mappings:
Namespace Name Mixin selector official ax
Lbfh;ax:Ljava/util/UUID;
intermediary field_6021
Lnet/minecraft/class_1297;field_6021:Ljava/util/UUID;
named uuid
Lnet/minecraft/entity/Entity;uuid:Ljava/util/UUID;
-
uuidString
- Mappings:
Namespace Name Mixin selector official ay
Lbfh;ay:Ljava/lang/String;
intermediary field_5981
Lnet/minecraft/class_1297;field_5981:Ljava/lang/String;
named uuidString
Lnet/minecraft/entity/Entity;uuidString:Ljava/lang/String;
-
glowing
private boolean glowing- Mappings:
Namespace Name Mixin selector official bd
Lbfh;bd:Z
intermediary field_5958
Lnet/minecraft/class_1297;field_5958:Z
named glowing
Lnet/minecraft/entity/Entity;glowing:Z
-
commandTags
- Mappings:
Namespace Name Mixin selector official be
Lbfh;be:Ljava/util/Set;
intermediary field_6029
Lnet/minecraft/class_1297;field_6029:Ljava/util/Set;
named commandTags
Lnet/minecraft/entity/Entity;commandTags:Ljava/util/Set;
-
pistonMovementDelta
private final double[] pistonMovementDelta- Mappings:
Namespace Name Mixin selector official bf
Lbfh;bf:[D
intermediary field_5993
Lnet/minecraft/class_1297;field_5993:[D
named pistonMovementDelta
Lnet/minecraft/entity/Entity;pistonMovementDelta:[D
-
pistonMovementTick
private long pistonMovementTick- Mappings:
Namespace Name Mixin selector official bg
Lbfh;bg:J
intermediary field_5996
Lnet/minecraft/class_1297;field_5996:J
named pistonMovementTick
Lnet/minecraft/entity/Entity;pistonMovementTick:J
-
dimensions
- Mappings:
Namespace Name Mixin selector official bh
Lbfh;bh:Lbfi;
intermediary field_18065
Lnet/minecraft/class_1297;field_18065:Lnet/minecraft/class_4048;
named dimensions
Lnet/minecraft/entity/Entity;dimensions:Lnet/minecraft/entity/EntityDimensions;
-
standingEyeHeight
private float standingEyeHeight- Mappings:
Namespace Name Mixin selector official bi
Lbfh;bi:F
intermediary field_18066
Lnet/minecraft/class_1297;field_18066:F
named standingEyeHeight
Lnet/minecraft/entity/Entity;standingEyeHeight:F
-
inPowderSnow
public boolean inPowderSnow- Mappings:
Namespace Name Mixin selector official az
Lbfh;az:Z
intermediary field_27857
Lnet/minecraft/class_1297;field_27857:Z
named inPowderSnow
Lnet/minecraft/entity/Entity;inPowderSnow:Z
-
wasInPowderSnow
public boolean wasInPowderSnow- Mappings:
Namespace Name Mixin selector official aA
Lbfh;aA:Z
intermediary field_28628
Lnet/minecraft/class_1297;field_28628:Z
named wasInPowderSnow
Lnet/minecraft/entity/Entity;wasInPowderSnow:Z
-
wasOnFire
public boolean wasOnFire- Mappings:
Namespace Name Mixin selector official aB
Lbfh;aB:Z
intermediary field_28629
Lnet/minecraft/class_1297;field_28629:Z
named wasOnFire
Lnet/minecraft/entity/Entity;wasOnFire:Z
-
supportingBlockPos
- Mappings:
Namespace Name Mixin selector official aC
Lbfh;aC:Ljava/util/Optional;
intermediary field_44784
Lnet/minecraft/class_1297;field_44784:Ljava/util/Optional;
named supportingBlockPos
Lnet/minecraft/entity/Entity;supportingBlockPos:Ljava/util/Optional;
-
field_44873
private boolean field_44873- Mappings:
Namespace Name Mixin selector official bj
Lbfh;bj:Z
intermediary field_44873
Lnet/minecraft/class_1297;field_44873:Z
named field_44873
Lnet/minecraft/entity/Entity;field_44873:Z
-
lastChimeIntensity
private float lastChimeIntensity- Mappings:
Namespace Name Mixin selector official bk
Lbfh;bk:F
intermediary field_26997
Lnet/minecraft/class_1297;field_26997:F
named lastChimeIntensity
Lnet/minecraft/entity/Entity;lastChimeIntensity:F
-
lastChimeAge
private int lastChimeAge- Mappings:
Namespace Name Mixin selector official bl
Lbfh;bl:I
intermediary field_26994
Lnet/minecraft/class_1297;field_26994:I
named lastChimeAge
Lnet/minecraft/entity/Entity;lastChimeAge:I
-
hasVisualFire
private boolean hasVisualFire- Mappings:
Namespace Name Mixin selector official bm
Lbfh;bm:Z
intermediary field_33758
Lnet/minecraft/class_1297;field_33758:Z
named hasVisualFire
Lnet/minecraft/entity/Entity;hasVisualFire:Z
-
blockStateAtPos
- Mappings:
Namespace Name Mixin selector official bn
Lbfh;bn:Ldby;
intermediary field_35588
Lnet/minecraft/class_1297;field_35588:Lnet/minecraft/class_2680;
named blockStateAtPos
Lnet/minecraft/entity/Entity;blockStateAtPos:Lnet/minecraft/block/BlockState;
-
-
Constructor Details
-
Entity
- Mappings:
Namespace Name Mixin selector official <init>
Lbfh;<init>(Lbfl;Lcmk;)V
intermediary <init>
Lnet/minecraft/class_1297;<init>(Lnet/minecraft/class_1299;Lnet/minecraft/class_1937;)V
named <init>
Lnet/minecraft/entity/Entity;<init>(Lnet/minecraft/entity/EntityType;Lnet/minecraft/world/World;)V
-
-
Method Details
-
collidesWithStateAtPos
Returns whether the entity collides with the blockstate
atpos
.- Returns:
- whether the entity collides with the block
state
atpos
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lgu;Ldby;)Z
intermediary method_30632
Lnet/minecraft/class_1297;method_30632(Lnet/minecraft/class_2338;Lnet/minecraft/class_2680;)Z
named collidesWithStateAtPos
Lnet/minecraft/entity/Entity;collidesWithStateAtPos(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;)Z
-
getTeamColorValue
public int getTeamColorValue()Returns the team color value, or0xFFFFFF
if the entity is not in a team or the color is not set.- Returns:
- the team color value, or
0xFFFFFF
if the entity is not in a team or the color is not set - Mappings:
Namespace Name Mixin selector official c_
Lbfh;c_()I
intermediary method_22861
Lnet/minecraft/class_1297;method_22861()I
named getTeamColorValue
Lnet/minecraft/entity/Entity;getTeamColorValue()I
-
isSpectator
public boolean isSpectator()Returns whether the entity is a spectator.This returns
false
unless the entity is a player in spectator game mode.- Returns:
- whether the entity is a spectator
- Mappings:
Namespace Name Mixin selector official F_
Lbfh;F_()Z
intermediary method_7325
Lnet/minecraft/class_1297;method_7325()Z
named isSpectator
Lnet/minecraft/entity/Entity;isSpectator()Z
-
detach
public final void detach()Removes all the passengers and removes this entity from any vehicles it is riding.- Mappings:
Namespace Name Mixin selector official ab
Lbfh;ab()V
intermediary method_18375
Lnet/minecraft/class_1297;method_18375()V
named detach
Lnet/minecraft/entity/Entity;detach()V
-
updateTrackedPosition
public void updateTrackedPosition(double x, double y, double z) - Mappings:
Namespace Name Mixin selector official f
Lbfh;f(DDD)V
intermediary method_43391
Lnet/minecraft/class_1297;method_43391(DDD)V
named updateTrackedPosition
Lnet/minecraft/entity/Entity;updateTrackedPosition(DDD)V
-
getTrackedPosition
- Mappings:
Namespace Name Mixin selector official ac
Lbfh;ac()Laaz;
intermediary method_43389
Lnet/minecraft/class_1297;method_43389()Lnet/minecraft/class_7422;
named getTrackedPosition
Lnet/minecraft/entity/Entity;getTrackedPosition()Lnet/minecraft/entity/TrackedPosition;
-
getType
- Mappings:
Namespace Name Mixin selector official ad
Lbfh;ad()Lbfl;
intermediary method_5864
Lnet/minecraft/class_1297;method_5864()Lnet/minecraft/class_1299;
named getType
Lnet/minecraft/entity/Entity;getType()Lnet/minecraft/entity/EntityType;
-
getId
public int getId()Returns the network ID of this entity.Compared to the UUID, the integer network ID is significantly smaller and more suitable for network transportation. However, it is not persistent across game runs. For persistent purposes such as commands or game data, use the UUID.
- Specified by:
getId
in interfaceEntityLike
- Returns:
- the network ID of this entity
- Mappings:
Namespace Name Mixin selector official ae
Ldfp;ae()I
intermediary method_5628
Lnet/minecraft/class_5568;method_5628()I
named getId
Lnet/minecraft/world/entity/EntityLike;getId()I
-
setId
public void setId(int id) Sets the network ID of this entity.- See Also:
- API Note:
- This is used by client-side networking logic to set up the network ID of entities from the server. This shouldn't be used by server-side logic as the network ID is already properly initialized on entity object construction.
- Mappings:
Namespace Name Mixin selector official e
Lbfh;e(I)V
intermediary method_5838
Lnet/minecraft/class_1297;method_5838(I)V
named setId
Lnet/minecraft/entity/Entity;setId(I)V
-
getCommandTags
Returns all command tags the entity belongs to.Scoreboard tags are set using the /tag command, and is different from entity type tags defined in data packs.
- Returns:
- all command tags the entity belongs to
- Mappings:
Namespace Name Mixin selector official af
Lbfh;af()Ljava/util/Set;
intermediary method_5752
Lnet/minecraft/class_1297;method_5752()Ljava/util/Set;
named getCommandTags
Lnet/minecraft/entity/Entity;getCommandTags()Ljava/util/Set;
-
addCommandTag
Adds a command tag to this entity. An entity can have up to1024
command tags.Command tags are set using the /tag command, and is different from entity type tags defined in data packs.
- Returns:
- whether the command tag was successfully added
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Ljava/lang/String;)Z
intermediary method_5780
Lnet/minecraft/class_1297;method_5780(Ljava/lang/String;)Z
named addCommandTag
Lnet/minecraft/entity/Entity;addCommandTag(Ljava/lang/String;)Z
-
removeScoreboardTag
Removes a command tag from this entity.Command tags are set using the /tag command, and is different from entity type tags defined in data packs.
- Returns:
- whether the command tag was successfully removed
- Mappings:
Namespace Name Mixin selector official b
Lbfh;b(Ljava/lang/String;)Z
intermediary method_5738
Lnet/minecraft/class_1297;method_5738(Ljava/lang/String;)Z
named removeScoreboardTag
Lnet/minecraft/entity/Entity;removeScoreboardTag(Ljava/lang/String;)Z
-
kill
public void kill()Kills the entity.This drops loot when applicable, and emits the
GameEvent.ENTITY_DIE
game event.- Mappings:
Namespace Name Mixin selector official ag
Lbfh;ag()V
intermediary method_5768
Lnet/minecraft/class_1297;method_5768()V
named kill
Lnet/minecraft/entity/Entity;kill()V
-
discard
public final void discard()Discards the entity. This is also referred to as "despawning".This does not cause the entity to drop loot.
- Mappings:
Namespace Name Mixin selector official ah
Lbfh;ah()V
intermediary method_31472
Lnet/minecraft/class_1297;method_31472()V
named discard
Lnet/minecraft/entity/Entity;discard()V
-
initDataTracker
protected abstract void initDataTracker()Initializes data tracker.- API Note:
- Subclasses should override this and call
DataTracker.startTracking(net.minecraft.entity.data.TrackedData<T>, T)
for any data that needs to be tracked. - Mappings:
Namespace Name Mixin selector official a_
Lbfh;a_()V
intermediary method_5693
Lnet/minecraft/class_1297;method_5693()V
named initDataTracker
Lnet/minecraft/entity/Entity;initDataTracker()V
-
getDataTracker
- Mappings:
Namespace Name Mixin selector official ai
Lbfh;ai()Lacb;
intermediary method_5841
Lnet/minecraft/class_1297;method_5841()Lnet/minecraft/class_2945;
named getDataTracker
Lnet/minecraft/entity/Entity;getDataTracker()Lnet/minecraft/entity/data/DataTracker;
-
equals
-
hashCode
public int hashCode() -
remove
Removes the entity.- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lbfh$c;)V
intermediary method_5650
Lnet/minecraft/class_1297;method_5650(Lnet/minecraft/class_1297$class_5529;)V
named remove
Lnet/minecraft/entity/Entity;remove(Lnet/minecraft/entity/Entity$RemovalReason;)V
-
onRemoved
public void onRemoved()Called on the client side when the entity is removed.- API Note:
- To handle entity removal server-side, override
remove(net.minecraft.entity.Entity.RemovalReason)
and add custom logic there. - Mappings:
Namespace Name Mixin selector official aj
Lbfh;aj()V
intermediary method_36209
Lnet/minecraft/class_1297;method_36209()V
named onRemoved
Lnet/minecraft/entity/Entity;onRemoved()V
-
setPose
- Mappings:
Namespace Name Mixin selector official b
Lbfh;b(Lbgj;)V
intermediary method_18380
Lnet/minecraft/class_1297;method_18380(Lnet/minecraft/class_4050;)V
named setPose
Lnet/minecraft/entity/Entity;setPose(Lnet/minecraft/entity/EntityPose;)V
-
getPose
- Mappings:
Namespace Name Mixin selector official ak
Lbfh;ak()Lbgj;
intermediary method_18376
Lnet/minecraft/class_1297;method_18376()Lnet/minecraft/class_4050;
named getPose
Lnet/minecraft/entity/Entity;getPose()Lnet/minecraft/entity/EntityPose;
-
isInPose
- Mappings:
Namespace Name Mixin selector official c
Lbfh;c(Lbgj;)Z
intermediary method_41328
Lnet/minecraft/class_1297;method_41328(Lnet/minecraft/class_4050;)Z
named isInPose
Lnet/minecraft/entity/Entity;isInPose(Lnet/minecraft/entity/EntityPose;)Z
-
isInRange
Returns whether the distance between this entity andentity
is belowradius
.- Returns:
- whether the distance between this entity and
entity
is belowradius
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lbfh;D)Z
intermediary method_24516
Lnet/minecraft/class_1297;method_24516(Lnet/minecraft/class_1297;D)Z
named isInRange
Lnet/minecraft/entity/Entity;isInRange(Lnet/minecraft/entity/Entity;D)Z
-
isInRange
Returns whether both the horizontal and vertical distances between this entity andentity
are below the passed values.- Returns:
- whether both the horizontal and vertical distances between this entity and
entity
are below the passed values - Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lbfh;DD)Z
intermediary method_43259
Lnet/minecraft/class_1297;method_43259(Lnet/minecraft/class_1297;DD)Z
named isInRange
Lnet/minecraft/entity/Entity;isInRange(Lnet/minecraft/entity/Entity;DD)Z
-
setRotation
protected void setRotation(float yaw, float pitch) Sets the entity's yaw and pitch.- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(FF)V
intermediary method_5710
Lnet/minecraft/class_1297;method_5710(FF)V
named setRotation
Lnet/minecraft/entity/Entity;setRotation(FF)V
-
setPosition
Sets the position and refreshes the bounding box.This should be called after creating an instance of non-living entities. For living entities,
refreshPositionAndAngles(net.minecraft.util.math.BlockPos, float, float)
should be used instead.- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Leea;)V
intermediary method_33574
Lnet/minecraft/class_1297;method_33574(Lnet/minecraft/class_243;)V
named setPosition
Lnet/minecraft/entity/Entity;setPosition(Lnet/minecraft/util/math/Vec3d;)V
-
setPosition
public void setPosition(double x, double y, double z) Sets the position and refreshes the bounding box.This should be called after creating an instance of non-living entities. For living entities,
refreshPositionAndAngles(net.minecraft.util.math.BlockPos, float, float)
should be used instead.- See Also:
- Mappings:
Namespace Name Mixin selector official e
Lbfh;e(DDD)V
intermediary method_5814
Lnet/minecraft/class_1297;method_5814(DDD)V
named setPosition
Lnet/minecraft/entity/Entity;setPosition(DDD)V
-
calculateBoundingBox
- Mappings:
Namespace Name Mixin selector official al
Lbfh;al()Ledv;
intermediary method_33332
Lnet/minecraft/class_1297;method_33332()Lnet/minecraft/class_238;
named calculateBoundingBox
Lnet/minecraft/entity/Entity;calculateBoundingBox()Lnet/minecraft/util/math/Box;
-
refreshPosition
protected void refreshPosition()- Mappings:
Namespace Name Mixin selector official am
Lbfh;am()V
intermediary method_23311
Lnet/minecraft/class_1297;method_23311()V
named refreshPosition
Lnet/minecraft/entity/Entity;refreshPosition()V
-
changeLookDirection
public void changeLookDirection(double cursorDeltaX, double cursorDeltaY) - Mappings:
Namespace Name Mixin selector official b
Lbfh;b(DD)V
intermediary method_5872
Lnet/minecraft/class_1297;method_5872(DD)V
named changeLookDirection
Lnet/minecraft/entity/Entity;changeLookDirection(DD)V
-
tick
public void tick()Ticks this entity.- See Also:
- API Note:
- This can be overridden to add additional logics.
super.tick();
should be called in those cases. - Implementation Note:
- By default, this delegates all logics to
baseTick()
. - Mappings:
Namespace Name Mixin selector official l
Lbfh;l()V
intermediary method_5773
Lnet/minecraft/class_1297;method_5773()V
named tick
Lnet/minecraft/entity/Entity;tick()V
-
baseTick
public void baseTick()- Mappings:
Namespace Name Mixin selector official an
Lbfh;an()V
intermediary method_5670
Lnet/minecraft/class_1297;method_5670()V
named baseTick
Lnet/minecraft/entity/Entity;baseTick()V
-
setOnFire
public void setOnFire(boolean onFire) - Mappings:
Namespace Name Mixin selector official a_
Lbfh;a_(Z)V
intermediary method_33572
Lnet/minecraft/class_1297;method_33572(Z)V
named setOnFire
Lnet/minecraft/entity/Entity;setOnFire(Z)V
-
attemptTickInVoid
public void attemptTickInVoid()CallstickInVoid()
when the entity is 64 blocks below the world's minimum Y position.- Mappings:
Namespace Name Mixin selector official ao
Lbfh;ao()V
intermediary method_31473
Lnet/minecraft/class_1297;method_31473()V
named attemptTickInVoid
Lnet/minecraft/entity/Entity;attemptTickInVoid()V
-
resetPortalCooldown
public void resetPortalCooldown()Resets the entity's portal cooldown to the default.- See Also:
- Mappings:
Namespace Name Mixin selector official ap
Lbfh;ap()V
intermediary method_30229
Lnet/minecraft/class_1297;method_30229()V
named resetPortalCooldown
Lnet/minecraft/entity/Entity;resetPortalCooldown()V
-
setPortalCooldown
public void setPortalCooldown(int portalCooldown) - Mappings:
Namespace Name Mixin selector official f
Lbfh;f(I)V
intermediary method_51850
Lnet/minecraft/class_1297;method_51850(I)V
named setPortalCooldown
Lnet/minecraft/entity/Entity;setPortalCooldown(I)V
-
getPortalCooldown
public int getPortalCooldown()- Mappings:
Namespace Name Mixin selector official aq
Lbfh;aq()I
intermediary method_51848
Lnet/minecraft/class_1297;method_51848()I
named getPortalCooldown
Lnet/minecraft/entity/Entity;getPortalCooldown()I
-
hasPortalCooldown
public boolean hasPortalCooldown()Returns whether the entity's portal cooldown is in effect.- Returns:
- whether the entity's portal cooldown is in effect
- Mappings:
Namespace Name Mixin selector official ar
Lbfh;ar()Z
intermediary method_30230
Lnet/minecraft/class_1297;method_30230()Z
named hasPortalCooldown
Lnet/minecraft/entity/Entity;hasPortalCooldown()Z
-
tickPortalCooldown
protected void tickPortalCooldown()- Mappings:
Namespace Name Mixin selector official H
Lbfh;H()V
intermediary method_5760
Lnet/minecraft/class_1297;method_5760()V
named tickPortalCooldown
Lnet/minecraft/entity/Entity;tickPortalCooldown()V
-
getMaxNetherPortalTime
public int getMaxNetherPortalTime()Returns how long entities can be inside the nether portal without teleporting, in ticks.- Returns:
- how long entities can be inside the nether portal without teleporting, in ticks
- Mappings:
Namespace Name Mixin selector official as
Lbfh;as()I
intermediary method_5741
Lnet/minecraft/class_1297;method_5741()I
named getMaxNetherPortalTime
Lnet/minecraft/entity/Entity;getMaxNetherPortalTime()I
-
setOnFireFromLava
public void setOnFireFromLava()Sets the entity on fire from lava, applies lava damage, and plays the burning sound.- Implementation Note:
- Fire from lava lasts 15 seconds by default.
- Mappings:
Namespace Name Mixin selector official at
Lbfh;at()V
intermediary method_5730
Lnet/minecraft/class_1297;method_5730()V
named setOnFireFromLava
Lnet/minecraft/entity/Entity;setOnFireFromLava()V
-
setOnFireFor
public void setOnFireFor(int seconds) Sets the entity on fire forseconds
seconds.- See Also:
- Implementation Note:
- The actual duration can be reduced using the fire protection enchantment.
- Mappings:
Namespace Name Mixin selector official g
Lbfh;g(I)V
intermediary method_5639
Lnet/minecraft/class_1297;method_5639(I)V
named setOnFireFor
Lnet/minecraft/entity/Entity;setOnFireFor(I)V
-
setFireTicks
public void setFireTicks(int fireTicks) Sets the entity on fire forticks
ticks.- See Also:
- Mappings:
Namespace Name Mixin selector official h
Lbfh;h(I)V
intermediary method_20803
Lnet/minecraft/class_1297;method_20803(I)V
named setFireTicks
Lnet/minecraft/entity/Entity;setFireTicks(I)V
-
getFireTicks
public int getFireTicks()- Mappings:
Namespace Name Mixin selector official au
Lbfh;au()I
intermediary method_20802
Lnet/minecraft/class_1297;method_20802()I
named getFireTicks
Lnet/minecraft/entity/Entity;getFireTicks()I
-
extinguish
public void extinguish()Extinguishes this entity.- API Note:
- This is used by water,
LeveledCauldronBlock
, and splash water bottles in vanilla. - Mappings:
Namespace Name Mixin selector official av
Lbfh;av()V
intermediary method_5646
Lnet/minecraft/class_1297;method_5646()V
named extinguish
Lnet/minecraft/entity/Entity;extinguish()V
-
tickInVoid
protected void tickInVoid()Called when the entity is 64 blocks below the world's minimum Y position.Living entities use this to deal out of world damage.
- Mappings:
Namespace Name Mixin selector official aw
Lbfh;aw()V
intermediary method_5825
Lnet/minecraft/class_1297;method_5825()V
named tickInVoid
Lnet/minecraft/entity/Entity;tickInVoid()V
-
doesNotCollide
public boolean doesNotCollide(double offsetX, double offsetY, double offsetZ) Returns whether the bounding box with the given offsets do not collide with blocks or fluids.- Returns:
- whether the bounding box with the given offsets do not collide with blocks or fluids
- Mappings:
Namespace Name Mixin selector official g
Lbfh;g(DDD)Z
intermediary method_5654
Lnet/minecraft/class_1297;method_5654(DDD)Z
named doesNotCollide
Lnet/minecraft/entity/Entity;doesNotCollide(DDD)Z
-
doesNotCollide
- Mappings:
Namespace Name Mixin selector official b
Lbfh;b(Ledv;)Z
intermediary method_5629
Lnet/minecraft/class_1297;method_5629(Lnet/minecraft/class_238;)Z
named doesNotCollide
Lnet/minecraft/entity/Entity;doesNotCollide(Lnet/minecraft/util/math/Box;)Z
-
setOnGround
public void setOnGround(boolean onGround) - Mappings:
Namespace Name Mixin selector official c
Lbfh;c(Z)V
intermediary method_24830
Lnet/minecraft/class_1297;method_24830(Z)V
named setOnGround
Lnet/minecraft/entity/Entity;setOnGround(Z)V
-
isSupportedBy
- Mappings:
Namespace Name Mixin selector official d
Lbfh;d(Lgu;)Z
intermediary method_51849
Lnet/minecraft/class_1297;method_51849(Lnet/minecraft/class_2338;)Z
named isSupportedBy
Lnet/minecraft/entity/Entity;isSupportedBy(Lnet/minecraft/util/math/BlockPos;)Z
-
updateSupportingBlockPos
protected void updateSupportingBlockPos(boolean onGround) - Mappings:
Namespace Name Mixin selector official d
Lbfh;d(Z)V
intermediary method_51703
Lnet/minecraft/class_1297;method_51703(Z)V
named updateSupportingBlockPos
Lnet/minecraft/entity/Entity;updateSupportingBlockPos(Z)V
-
isOnGround
public boolean isOnGround()Returns whether the entity is on the ground.- Returns:
- whether the entity is on the ground
- Mappings:
Namespace Name Mixin selector official ax
Lbfh;ax()Z
intermediary method_24828
Lnet/minecraft/class_1297;method_24828()Z
named isOnGround
Lnet/minecraft/entity/Entity;isOnGround()Z
-
move
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lbgd;Leea;)V
intermediary method_5784
Lnet/minecraft/class_1297;method_5784(Lnet/minecraft/class_1313;Lnet/minecraft/class_243;)V
named move
Lnet/minecraft/entity/Entity;move(Lnet/minecraft/entity/MovementType;Lnet/minecraft/util/math/Vec3d;)V
-
canClimb
- Mappings:
Namespace Name Mixin selector official c
Lbfh;c(Ldby;)Z
intermediary method_51702
Lnet/minecraft/class_1297;method_51702(Lnet/minecraft/class_2680;)Z
named canClimb
Lnet/minecraft/entity/Entity;canClimb(Lnet/minecraft/block/BlockState;)Z
-
stepOnBlock
private boolean stepOnBlock(BlockPos pos, BlockState state, boolean playSound, boolean emitEvent, Vec3d movement) - Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lgu;Ldby;ZZLeea;)Z
intermediary method_51701
Lnet/minecraft/class_1297;method_51701(Lnet/minecraft/class_2338;Lnet/minecraft/class_2680;ZZLnet/minecraft/class_243;)Z
named stepOnBlock
Lnet/minecraft/entity/Entity;stepOnBlock(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;ZZLnet/minecraft/util/math/Vec3d;)Z
-
hasCollidedSoftly
- Mappings:
Namespace Name Mixin selector official b
Lbfh;b(Leea;)Z
intermediary method_39759
Lnet/minecraft/class_1297;method_39759(Lnet/minecraft/class_243;)Z
named hasCollidedSoftly
Lnet/minecraft/entity/Entity;hasCollidedSoftly(Lnet/minecraft/util/math/Vec3d;)Z
-
tryCheckBlockCollision
protected void tryCheckBlockCollision()- Mappings:
Namespace Name Mixin selector official ay
Lbfh;ay()V
intermediary method_36974
Lnet/minecraft/class_1297;method_36974()V
named tryCheckBlockCollision
Lnet/minecraft/entity/Entity;tryCheckBlockCollision()V
-
playExtinguishSound
protected void playExtinguishSound()Plays theSoundEvents.ENTITY_GENERIC_EXTINGUISH_FIRE
sound.- Mappings:
Namespace Name Mixin selector official az
Lbfh;az()V
intermediary method_36975
Lnet/minecraft/class_1297;method_36975()V
named playExtinguishSound
Lnet/minecraft/entity/Entity;playExtinguishSound()V
-
extinguishWithSound
public void extinguishWithSound()- Mappings:
Namespace Name Mixin selector official aA
Lbfh;aA()V
intermediary method_46395
Lnet/minecraft/class_1297;method_46395()V
named extinguishWithSound
Lnet/minecraft/entity/Entity;extinguishWithSound()V
-
addAirTravelEffects
protected void addAirTravelEffects()Adds the effects of this entity when it travels in air, usually to the world the entity is in.This is only called when the entity has any move effect, from
move(MovementType, Vec3d)
- Mappings:
Namespace Name Mixin selector official aB
Lbfh;aB()V
intermediary method_33573
Lnet/minecraft/class_1297;method_33573()V
named addAirTravelEffects
Lnet/minecraft/entity/Entity;addAirTravelEffects()V
-
getLandingPos
Deprecated.Returns the landing position.- Returns:
- the landing position
- See Also:
- Implementation Note:
- Landing position is the entity's position, with
0.2
subtracted from the Y coordinate. This means that, for example, if a player is on a carpet on a soul soil, the soul soil's position would be returned. - Mappings:
Namespace Name Mixin selector official aC
Lbfh;aC()Lgu;
intermediary method_43260
Lnet/minecraft/class_1297;method_43260()Lnet/minecraft/class_2338;
named getLandingPos
Lnet/minecraft/entity/Entity;getLandingPos()Lnet/minecraft/util/math/BlockPos;
-
getVelocityAffectingPos
- Mappings:
Namespace Name Mixin selector official aD
Lbfh;aD()Lgu;
intermediary method_23314
Lnet/minecraft/class_1297;method_23314()Lnet/minecraft/class_2338;
named getVelocityAffectingPos
Lnet/minecraft/entity/Entity;getVelocityAffectingPos()Lnet/minecraft/util/math/BlockPos;
-
getSteppingPos
Returns the stepping position.- Returns:
- the stepping position
- See Also:
- Implementation Note:
- Stepping position is the entity's position, with
1e-05
subtracted from the Y coordinate. This means that, for example, if a player is on a carpet on a soul soil, the carpet's position would be returned. - Mappings:
Namespace Name Mixin selector official aE
Lbfh;aE()Lgu;
intermediary method_23312
Lnet/minecraft/class_1297;method_23312()Lnet/minecraft/class_2338;
named getSteppingPos
Lnet/minecraft/entity/Entity;getSteppingPos()Lnet/minecraft/util/math/BlockPos;
-
getPosWithYOffset
- Mappings:
Namespace Name Mixin selector official d
Lbfh;d(F)Lgu;
intermediary method_43258
Lnet/minecraft/class_1297;method_43258(F)Lnet/minecraft/class_2338;
named getPosWithYOffset
Lnet/minecraft/entity/Entity;getPosWithYOffset(F)Lnet/minecraft/util/math/BlockPos;
-
getJumpVelocityMultiplier
protected float getJumpVelocityMultiplier()- Mappings:
Namespace Name Mixin selector official aF
Lbfh;aF()F
intermediary method_23313
Lnet/minecraft/class_1297;method_23313()F
named getJumpVelocityMultiplier
Lnet/minecraft/entity/Entity;getJumpVelocityMultiplier()F
-
getVelocityMultiplier
protected float getVelocityMultiplier()- Mappings:
Namespace Name Mixin selector official aG
Lbfh;aG()F
intermediary method_23326
Lnet/minecraft/class_1297;method_23326()F
named getVelocityMultiplier
Lnet/minecraft/entity/Entity;getVelocityMultiplier()F
-
adjustMovementForSneaking
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Leea;Lbgd;)Leea;
intermediary method_18796
Lnet/minecraft/class_1297;method_18796(Lnet/minecraft/class_243;Lnet/minecraft/class_1313;)Lnet/minecraft/class_243;
named adjustMovementForSneaking
Lnet/minecraft/entity/Entity;adjustMovementForSneaking(Lnet/minecraft/util/math/Vec3d;Lnet/minecraft/entity/MovementType;)Lnet/minecraft/util/math/Vec3d;
-
adjustMovementForPiston
- Mappings:
Namespace Name Mixin selector official c
Lbfh;c(Leea;)Leea;
intermediary method_18794
Lnet/minecraft/class_1297;method_18794(Lnet/minecraft/class_243;)Lnet/minecraft/class_243;
named adjustMovementForPiston
Lnet/minecraft/entity/Entity;adjustMovementForPiston(Lnet/minecraft/util/math/Vec3d;)Lnet/minecraft/util/math/Vec3d;
-
calculatePistonMovementFactor
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lha$a;D)D
intermediary method_18797
Lnet/minecraft/class_1297;method_18797(Lnet/minecraft/class_2350$class_2351;D)D
named calculatePistonMovementFactor
Lnet/minecraft/entity/Entity;calculatePistonMovementFactor(Lnet/minecraft/util/math/Direction$Axis;D)D
-
adjustMovementForCollisions
- Mappings:
Namespace Name Mixin selector official h
Lbfh;h(Leea;)Leea;
intermediary method_17835
Lnet/minecraft/class_1297;method_17835(Lnet/minecraft/class_243;)Lnet/minecraft/class_243;
named adjustMovementForCollisions
Lnet/minecraft/entity/Entity;adjustMovementForCollisions(Lnet/minecraft/util/math/Vec3d;)Lnet/minecraft/util/math/Vec3d;
-
adjustMovementForCollisions
public static Vec3d adjustMovementForCollisions(@Nullable @Nullable Entity entity, Vec3d movement, Box entityBoundingBox, World world, List<VoxelShape> collisions) - Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lbfh;Leea;Ledv;Lcmk;Ljava/util/List;)Leea;
intermediary method_20736
Lnet/minecraft/class_1297;method_20736(Lnet/minecraft/class_1297;Lnet/minecraft/class_243;Lnet/minecraft/class_238;Lnet/minecraft/class_1937;Ljava/util/List;)Lnet/minecraft/class_243;
named adjustMovementForCollisions
Lnet/minecraft/entity/Entity;adjustMovementForCollisions(Lnet/minecraft/entity/Entity;Lnet/minecraft/util/math/Vec3d;Lnet/minecraft/util/math/Box;Lnet/minecraft/world/World;Ljava/util/List;)Lnet/minecraft/util/math/Vec3d;
-
adjustMovementForCollisions
private static Vec3d adjustMovementForCollisions(Vec3d movement, Box entityBoundingBox, List<VoxelShape> collisions) - Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Leea;Ledv;Ljava/util/List;)Leea;
intermediary method_20737
Lnet/minecraft/class_1297;method_20737(Lnet/minecraft/class_243;Lnet/minecraft/class_238;Ljava/util/List;)Lnet/minecraft/class_243;
named adjustMovementForCollisions
Lnet/minecraft/entity/Entity;adjustMovementForCollisions(Lnet/minecraft/util/math/Vec3d;Lnet/minecraft/util/math/Box;Ljava/util/List;)Lnet/minecraft/util/math/Vec3d;
-
calculateNextStepSoundDistance
protected float calculateNextStepSoundDistance()- Mappings:
Namespace Name Mixin selector official aH
Lbfh;aH()F
intermediary method_5867
Lnet/minecraft/class_1297;method_5867()F
named calculateNextStepSoundDistance
Lnet/minecraft/entity/Entity;calculateNextStepSoundDistance()F
-
getSwimSound
- Mappings:
Namespace Name Mixin selector official aI
Lbfh;aI()Lamg;
intermediary method_5737
Lnet/minecraft/class_1297;method_5737()Lnet/minecraft/class_3414;
named getSwimSound
Lnet/minecraft/entity/Entity;getSwimSound()Lnet/minecraft/sound/SoundEvent;
-
getSplashSound
- Mappings:
Namespace Name Mixin selector official aJ
Lbfh;aJ()Lamg;
intermediary method_5625
Lnet/minecraft/class_1297;method_5625()Lnet/minecraft/class_3414;
named getSplashSound
Lnet/minecraft/entity/Entity;getSplashSound()Lnet/minecraft/sound/SoundEvent;
-
getHighSpeedSplashSound
- Mappings:
Namespace Name Mixin selector official aK
Lbfh;aK()Lamg;
intermediary method_5672
Lnet/minecraft/class_1297;method_5672()Lnet/minecraft/class_3414;
named getHighSpeedSplashSound
Lnet/minecraft/entity/Entity;getHighSpeedSplashSound()Lnet/minecraft/sound/SoundEvent;
-
checkBlockCollision
protected void checkBlockCollision()Checks the entity's block collision, callingAbstractBlock.onEntityCollision(net.minecraft.block.BlockState, net.minecraft.world.World, net.minecraft.util.math.BlockPos, net.minecraft.entity.Entity)
andonBlockCollision(net.minecraft.block.BlockState)
. This should be called manually iftick()
is overridden.- Mappings:
Namespace Name Mixin selector official aL
Lbfh;aL()V
intermediary method_5852
Lnet/minecraft/class_1297;method_5852()V
named checkBlockCollision
Lnet/minecraft/entity/Entity;checkBlockCollision()V
-
onBlockCollision
Called when this entity's collision box intersectsstate
.- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Ldby;)V
intermediary method_5622
Lnet/minecraft/class_1297;method_5622(Lnet/minecraft/class_2680;)V
named onBlockCollision
Lnet/minecraft/entity/Entity;onBlockCollision(Lnet/minecraft/block/BlockState;)V
-
emitGameEvent
Emits a game event originating from another entity at this entity's position.A common example is a game event called in
interact(net.minecraft.entity.player.PlayerEntity, net.minecraft.util.Hand)
, where the player interacting with the entity is the emitter of the event.- Parameters:
entity
- the entity that emitted the game event, ornull
if there is none- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Ldgi;Lbfh;)V
intermediary method_32875
Lnet/minecraft/class_1297;method_32875(Lnet/minecraft/class_5712;Lnet/minecraft/class_1297;)V
named emitGameEvent
Lnet/minecraft/entity/Entity;emitGameEvent(Lnet/minecraft/world/event/GameEvent;Lnet/minecraft/entity/Entity;)V
-
emitGameEvent
Emits a game event originating from this entity at this entity's position.- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Ldgi;)V
intermediary method_32876
Lnet/minecraft/class_1297;method_32876(Lnet/minecraft/class_5712;)V
named emitGameEvent
Lnet/minecraft/entity/Entity;emitGameEvent(Lnet/minecraft/world/event/GameEvent;)V
-
playStepSounds
- Mappings:
Namespace Name Mixin selector official c
Lbfh;c(Lgu;Ldby;)V
intermediary method_51297
Lnet/minecraft/class_1297;method_51297(Lnet/minecraft/class_2338;Lnet/minecraft/class_2680;)V
named playStepSounds
Lnet/minecraft/entity/Entity;playStepSounds(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;)V
-
playSwimSound
protected void playSwimSound()- Mappings:
Namespace Name Mixin selector official aM
Lbfh;aM()V
intermediary method_51295
Lnet/minecraft/class_1297;method_51295()V
named playSwimSound
Lnet/minecraft/entity/Entity;playSwimSound()V
-
getStepSoundPos
- Mappings:
Namespace Name Mixin selector official e
Lbfh;e(Lgu;)Lgu;
intermediary method_49788
Lnet/minecraft/class_1297;method_49788(Lnet/minecraft/class_2338;)Lnet/minecraft/class_2338;
named getStepSoundPos
Lnet/minecraft/entity/Entity;getStepSoundPos(Lnet/minecraft/util/math/BlockPos;)Lnet/minecraft/util/math/BlockPos;
-
playCombinationStepSounds
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Ldby;Ldby;)V
intermediary method_49787
Lnet/minecraft/class_1297;method_49787(Lnet/minecraft/class_2680;Lnet/minecraft/class_2680;)V
named playCombinationStepSounds
Lnet/minecraft/entity/Entity;playCombinationStepSounds(Lnet/minecraft/block/BlockState;Lnet/minecraft/block/BlockState;)V
-
playSecondaryStepSound
- Mappings:
Namespace Name Mixin selector official b
Lbfh;b(Ldby;)V
intermediary method_51296
Lnet/minecraft/class_1297;method_51296(Lnet/minecraft/class_2680;)V
named playSecondaryStepSound
Lnet/minecraft/entity/Entity;playSecondaryStepSound(Lnet/minecraft/block/BlockState;)V
-
playStepSound
- Mappings:
Namespace Name Mixin selector official b
Lbfh;b(Lgu;Ldby;)V
intermediary method_5712
Lnet/minecraft/class_1297;method_5712(Lnet/minecraft/class_2338;Lnet/minecraft/class_2680;)V
named playStepSound
Lnet/minecraft/entity/Entity;playStepSound(Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;)V
-
shouldPlayAmethystChimeSound
- Mappings:
Namespace Name Mixin selector official d
Lbfh;d(Ldby;)Z
intermediary method_49790
Lnet/minecraft/class_1297;method_49790(Lnet/minecraft/class_2680;)Z
named shouldPlayAmethystChimeSound
Lnet/minecraft/entity/Entity;shouldPlayAmethystChimeSound(Lnet/minecraft/block/BlockState;)Z
-
playAmethystChimeSound
private void playAmethystChimeSound()- Mappings:
Namespace Name Mixin selector official j
Lbfh;j()V
intermediary method_37215
Lnet/minecraft/class_1297;method_37215()V
named playAmethystChimeSound
Lnet/minecraft/entity/Entity;playAmethystChimeSound()V
-
playSwimSound
protected void playSwimSound(float volume) - Mappings:
Namespace Name Mixin selector official e
Lbfh;e(F)V
intermediary method_5734
Lnet/minecraft/class_1297;method_5734(F)V
named playSwimSound
Lnet/minecraft/entity/Entity;playSwimSound(F)V
-
addFlapEffects
protected void addFlapEffects()Adds the effects of this entity flapping, usually to the world the entity is in.The actual flapping logic should be done in
tick()
instead.This is only called when the entity is flapping wings and the entity has any move effect, from
addAirTravelEffects()
.- Mappings:
Namespace Name Mixin selector official aN
Lbfh;aN()V
intermediary method_5801
Lnet/minecraft/class_1297;method_5801()V
named addFlapEffects
Lnet/minecraft/entity/Entity;addFlapEffects()V
-
isFlappingWings
protected boolean isFlappingWings()Returns whether the entity is flapping their wings.Entities flapping their wings will call
addFlapEffects()
insideaddAirTravelEffects()
.- Returns:
- whether the entity is flapping their wings
- Mappings:
Namespace Name Mixin selector official aO
Lbfh;aO()Z
intermediary method_5776
Lnet/minecraft/class_1297;method_5776()Z
named isFlappingWings
Lnet/minecraft/entity/Entity;isFlappingWings()Z
-
playSound
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lamg;FF)V
intermediary method_5783
Lnet/minecraft/class_1297;method_5783(Lnet/minecraft/class_3414;FF)V
named playSound
Lnet/minecraft/entity/Entity;playSound(Lnet/minecraft/sound/SoundEvent;FF)V
-
playSoundIfNotSilent
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lamg;)V
intermediary method_43077
Lnet/minecraft/class_1297;method_43077(Lnet/minecraft/class_3414;)V
named playSoundIfNotSilent
Lnet/minecraft/entity/Entity;playSoundIfNotSilent(Lnet/minecraft/sound/SoundEvent;)V
-
isSilent
public boolean isSilent()Returns whether the entity is silent.Silent entities should not make sounds.
playSound(net.minecraft.sound.SoundEvent, float, float)
checks this method by default, but if a sound is played manually, this has to be checked too.This is saved under the
Silent
NBT key.- Returns:
- whether the entity is silent
- Mappings:
Namespace Name Mixin selector official aP
Lbfh;aP()Z
intermediary method_5701
Lnet/minecraft/class_1297;method_5701()Z
named isSilent
Lnet/minecraft/entity/Entity;isSilent()Z
-
setSilent
public void setSilent(boolean silent) Sets whether the entity is silent.This is saved under the
Silent
NBT key.- Mappings:
Namespace Name Mixin selector official e
Lbfh;e(Z)V
intermediary method_5803
Lnet/minecraft/class_1297;method_5803(Z)V
named setSilent
Lnet/minecraft/entity/Entity;setSilent(Z)V
-
hasNoGravity
public boolean hasNoGravity()Returns whether the entity has no gravity.Entities using
FlightMoveControl
has no gravity. This is saved under theNoGravity
NBT key.- Returns:
- whether the entity has no gravity
- Mappings:
Namespace Name Mixin selector official aQ
Lbfh;aQ()Z
intermediary method_5740
Lnet/minecraft/class_1297;method_5740()Z
named hasNoGravity
Lnet/minecraft/entity/Entity;hasNoGravity()Z
-
setNoGravity
public void setNoGravity(boolean noGravity) Sets whether the entity has no gravity.Entities using
FlightMoveControl
has no gravity. This is saved under theNoGravity
NBT key.- Mappings:
Namespace Name Mixin selector official f
Lbfh;f(Z)V
intermediary method_5875
Lnet/minecraft/class_1297;method_5875(Z)V
named setNoGravity
Lnet/minecraft/entity/Entity;setNoGravity(Z)V
-
getMoveEffect
Returns the possible effect(s) of an entity moving.- Implementation Note:
- If an entity does not emit game events or play move sounds, this method should be overridden as returning a value other than ALL allows skipping some movement logic and boost ticking performance.
- Mappings:
Namespace Name Mixin selector official aR
Lbfh;aR()Lbfh$b;
intermediary method_33570
Lnet/minecraft/class_1297;method_33570()Lnet/minecraft/class_1297$class_5799;
named getMoveEffect
Lnet/minecraft/entity/Entity;getMoveEffect()Lnet/minecraft/entity/Entity$MoveEffect;
-
occludeVibrationSignals
public boolean occludeVibrationSignals()Returns whether the entity should not emit vibrations.By default, wool or carpet item entities, and
WardenEntity
do not emit vibrations.- Returns:
- whether the entity should not emit vibrations
- Mappings:
Namespace Name Mixin selector official aS
Lbfh;aS()Z
intermediary method_33189
Lnet/minecraft/class_1297;method_33189()Z
named occludeVibrationSignals
Lnet/minecraft/entity/Entity;occludeVibrationSignals()Z
-
fall
protected void fall(double heightDifference, boolean onGround, BlockState state, BlockPos landedPosition) Called when the entity falls. Flying mobs should override this to do nothing.- Implementation Note:
- If on ground, this calls
Block.onLandedUpon(net.minecraft.world.World, net.minecraft.block.BlockState, net.minecraft.util.math.BlockPos, net.minecraft.entity.Entity, float)
, which can add or reduce fall damage, emitsGameEvent.HIT_GROUND
, then callsonLanding()
. Otherwise, ifheightDifference
is negative, it subtracts that value fromfallDistance
. - Mappings:
Namespace Name Mixin selector official a
Lbfh;a(DZLdby;Lgu;)V
intermediary method_5623
Lnet/minecraft/class_1297;method_5623(DZLnet/minecraft/class_2680;Lnet/minecraft/class_2338;)V
named fall
Lnet/minecraft/entity/Entity;fall(DZLnet/minecraft/block/BlockState;Lnet/minecraft/util/math/BlockPos;)V
-
isFireImmune
public boolean isFireImmune()Returns whether the entity is immune to fire damage.- Returns:
- whether the entity is immune to fire damage
- See Also:
- Mappings:
Namespace Name Mixin selector official aT
Lbfh;aT()Z
intermediary method_5753
Lnet/minecraft/class_1297;method_5753()Z
named isFireImmune
Lnet/minecraft/entity/Entity;isFireImmune()Z
-
handleFallDamage
public boolean handleFallDamage(float fallDistance, float damageMultiplier, DamageSource damageSource) Called when an entity falls.Flying mobs and mobs immune to fall damage should override this to do nothing. Mobs with reduced fall damage should override this method to apply reduced damage instead. Some entities explode instead of applying fall damage, like
TntMinecartEntity
.- Returns:
- whether to play the sound when falling on honey block;
false
for all entities except horses and llamas - Mappings:
Namespace Name Mixin selector official a
Lbfh;a(FFLbem;)Z
intermediary method_5747
Lnet/minecraft/class_1297;method_5747(FFLnet/minecraft/class_1282;)Z
named handleFallDamage
Lnet/minecraft/entity/Entity;handleFallDamage(FFLnet/minecraft/entity/damage/DamageSource;)Z
-
isTouchingWater
public boolean isTouchingWater()Returns whether this entity's hitbox is touching water fluid.- Mappings:
Namespace Name Mixin selector official aU
Lbfh;aU()Z
intermediary method_5799
Lnet/minecraft/class_1297;method_5799()Z
named isTouchingWater
Lnet/minecraft/entity/Entity;isTouchingWater()Z
-
isBeingRainedOn
private boolean isBeingRainedOn()Returns whether it is raining at the entity's position.- Returns:
- whether it is raining at the entity's position
- Mappings:
Namespace Name Mixin selector official m
Lbfh;m()Z
intermediary method_5778
Lnet/minecraft/class_1297;method_5778()Z
named isBeingRainedOn
Lnet/minecraft/entity/Entity;isBeingRainedOn()Z
-
isInsideBubbleColumn
private boolean isInsideBubbleColumn()Returns whether the block at the entity's position is a bubble column.- Returns:
- whether the block at the entity's position is a bubble column
- Mappings:
Namespace Name Mixin selector official o
Lbfh;o()Z
intermediary method_5798
Lnet/minecraft/class_1297;method_5798()Z
named isInsideBubbleColumn
Lnet/minecraft/entity/Entity;isInsideBubbleColumn()Z
-
isTouchingWaterOrRain
public boolean isTouchingWaterOrRain()Returns whether this entity is touching water or is being rained on (but does not check for a bubble column).- Returns:
- whether this entity is touching water or is being rained on (but does not check for a bubble column)
- See Also:
- Mappings:
Namespace Name Mixin selector official aV
Lbfh;aV()Z
intermediary method_5721
Lnet/minecraft/class_1297;method_5721()Z
named isTouchingWaterOrRain
Lnet/minecraft/entity/Entity;isTouchingWaterOrRain()Z
-
isWet
public boolean isWet()Returns whether this entity is touching water, or is being rained on, or is inside a bubble column.- Returns:
- whether this entity is touching water, or is being rained on, or is inside a bubble column
- See Also:
- Mappings:
Namespace Name Mixin selector official aW
Lbfh;aW()Z
intermediary method_5637
Lnet/minecraft/class_1297;method_5637()Z
named isWet
Lnet/minecraft/entity/Entity;isWet()Z
-
isInsideWaterOrBubbleColumn
public boolean isInsideWaterOrBubbleColumn()Returns whether this entity is touching water or a bubble column.- Returns:
- whether this entity is touching water or a bubble column
- See Also:
- Mappings:
Namespace Name Mixin selector official aX
Lbfh;aX()Z
intermediary method_5816
Lnet/minecraft/class_1297;method_5816()Z
named isInsideWaterOrBubbleColumn
Lnet/minecraft/entity/Entity;isInsideWaterOrBubbleColumn()Z
-
isSubmergedInWater
public boolean isSubmergedInWater()Returns whether this entity's hitbox is fully submerged in water.- Returns:
- whether this entity's hitbox is fully submerged in water
- Mappings:
Namespace Name Mixin selector official aY
Lbfh;aY()Z
intermediary method_5869
Lnet/minecraft/class_1297;method_5869()Z
named isSubmergedInWater
Lnet/minecraft/entity/Entity;isSubmergedInWater()Z
-
updateSwimming
public void updateSwimming()- Mappings:
Namespace Name Mixin selector official aZ
Lbfh;aZ()V
intermediary method_5790
Lnet/minecraft/class_1297;method_5790()V
named updateSwimming
Lnet/minecraft/entity/Entity;updateSwimming()V
-
updateWaterState
protected boolean updateWaterState()- Mappings:
Namespace Name Mixin selector official ba
Lbfh;ba()Z
intermediary method_5876
Lnet/minecraft/class_1297;method_5876()Z
named updateWaterState
Lnet/minecraft/entity/Entity;updateWaterState()Z
-
checkWaterState
void checkWaterState()- Mappings:
Namespace Name Mixin selector official bb
Lbfh;bb()V
intermediary method_5713
Lnet/minecraft/class_1297;method_5713()V
named checkWaterState
Lnet/minecraft/entity/Entity;checkWaterState()V
-
updateSubmergedInWaterState
private void updateSubmergedInWaterState()- Mappings:
Namespace Name Mixin selector official p
Lbfh;p()V
intermediary method_5630
Lnet/minecraft/class_1297;method_5630()V
named updateSubmergedInWaterState
Lnet/minecraft/entity/Entity;updateSubmergedInWaterState()V
-
onSwimmingStart
protected void onSwimmingStart()- Mappings:
Namespace Name Mixin selector official bc
Lbfh;bc()V
intermediary method_5746
Lnet/minecraft/class_1297;method_5746()V
named onSwimmingStart
Lnet/minecraft/entity/Entity;onSwimmingStart()V
-
getLandingBlockState
Deprecated.Returns the block state at the landing position.- Returns:
- the block state at the landing position
- See Also:
- Implementation Note:
- Landing position is the entity's position, with
0.2
subtracted from the Y coordinate. This means that, for example, if a player is on a carpet on a soul soil, the soul soil's position would be returned. - Mappings:
Namespace Name Mixin selector official bd
Lbfh;bd()Ldby;
intermediary method_43261
Lnet/minecraft/class_1297;method_43261()Lnet/minecraft/class_2680;
named getLandingBlockState
Lnet/minecraft/entity/Entity;getLandingBlockState()Lnet/minecraft/block/BlockState;
-
getSteppingBlockState
Returns the block state at the stepping position.- Returns:
- the block state at the stepping position
- See Also:
- Implementation Note:
- Stepping position is the entity's position, with
1e-05
subtracted from the Y coordinate. This means that, for example, if a player is on a carpet on a soul soil, the carpet's position would be returned. - Mappings:
Namespace Name Mixin selector official be
Lbfh;be()Ldby;
intermediary method_25936
Lnet/minecraft/class_1297;method_25936()Lnet/minecraft/class_2680;
named getSteppingBlockState
Lnet/minecraft/entity/Entity;getSteppingBlockState()Lnet/minecraft/block/BlockState;
-
shouldSpawnSprintingParticles
public boolean shouldSpawnSprintingParticles()- Mappings:
Namespace Name Mixin selector official bf
Lbfh;bf()Z
intermediary method_27298
Lnet/minecraft/class_1297;method_27298()Z
named shouldSpawnSprintingParticles
Lnet/minecraft/entity/Entity;shouldSpawnSprintingParticles()Z
-
spawnSprintingParticles
protected void spawnSprintingParticles()- Mappings:
Namespace Name Mixin selector official bg
Lbfh;bg()V
intermediary method_5839
Lnet/minecraft/class_1297;method_5839()V
named spawnSprintingParticles
Lnet/minecraft/entity/Entity;spawnSprintingParticles()V
-
isSubmergedIn
Returns whether the entity is submerged in a fluid influidTag
.- Returns:
- whether the entity is submerged in a fluid in
fluidTag
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lanl;)Z
intermediary method_5777
Lnet/minecraft/class_1297;method_5777(Lnet/minecraft/class_6862;)Z
named isSubmergedIn
Lnet/minecraft/entity/Entity;isSubmergedIn(Lnet/minecraft/registry/tag/TagKey;)Z
-
isInLava
public boolean isInLava()Returns whether the entity is in lava.- Returns:
- whether the entity is in lava
- Mappings:
Namespace Name Mixin selector official bh
Lbfh;bh()Z
intermediary method_5771
Lnet/minecraft/class_1297;method_5771()Z
named isInLava
Lnet/minecraft/entity/Entity;isInLava()Z
-
updateVelocity
Updates the entity's velocity to add a vector in the direction of the entity's yaw whose absolute value ismovementInput
normalized and multiplied byspeed
.This is usually called inside overridden
LivingEntity.travel(net.minecraft.util.math.Vec3d)
if the entity is touching water; seeFishEntity
for an example.- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(FLeea;)V
intermediary method_5724
Lnet/minecraft/class_1297;method_5724(FLnet/minecraft/class_243;)V
named updateVelocity
Lnet/minecraft/entity/Entity;updateVelocity(FLnet/minecraft/util/math/Vec3d;)V
-
movementInputToVelocity
Returns a vector with the horizontal direction beingyaw
degrees and the absolute value beingmovementInput
normalized and multiplied byspeed
.- Returns:
- a vector with the horizontal direction being
yaw
degrees and the absolute value beingmovementInput
normalized and multiplied byspeed
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Leea;FF)Leea;
intermediary method_18795
Lnet/minecraft/class_1297;method_18795(Lnet/minecraft/class_243;FF)Lnet/minecraft/class_243;
named movementInputToVelocity
Lnet/minecraft/entity/Entity;movementInputToVelocity(Lnet/minecraft/util/math/Vec3d;FF)Lnet/minecraft/util/math/Vec3d;
-
getBrightnessAtEyes
Deprecated.- Mappings:
Namespace Name Mixin selector official bi
Lbfh;bi()F
intermediary method_5718
Lnet/minecraft/class_1297;method_5718()F
named getBrightnessAtEyes
Lnet/minecraft/entity/Entity;getBrightnessAtEyes()F
-
updatePositionAndAngles
public void updatePositionAndAngles(double x, double y, double z, float yaw, float pitch) - Mappings:
Namespace Name Mixin selector official a
Lbfh;a(DDDFF)V
intermediary method_5641
Lnet/minecraft/class_1297;method_5641(DDDFF)V
named updatePositionAndAngles
Lnet/minecraft/entity/Entity;updatePositionAndAngles(DDDFF)V
-
updatePosition
public void updatePosition(double x, double y, double z) - Mappings:
Namespace Name Mixin selector official h
Lbfh;h(DDD)V
intermediary method_30634
Lnet/minecraft/class_1297;method_30634(DDD)V
named updatePosition
Lnet/minecraft/entity/Entity;updatePosition(DDD)V
-
refreshPositionAfterTeleport
- Mappings:
Namespace Name Mixin selector official d
Lbfh;d(Leea;)V
intermediary method_29495
Lnet/minecraft/class_1297;method_29495(Lnet/minecraft/class_243;)V
named refreshPositionAfterTeleport
Lnet/minecraft/entity/Entity;refreshPositionAfterTeleport(Lnet/minecraft/util/math/Vec3d;)V
-
refreshPositionAfterTeleport
public void refreshPositionAfterTeleport(double x, double y, double z) - Mappings:
Namespace Name Mixin selector official d
Lbfh;d(DDD)V
intermediary method_24203
Lnet/minecraft/class_1297;method_24203(DDD)V
named refreshPositionAfterTeleport
Lnet/minecraft/entity/Entity;refreshPositionAfterTeleport(DDD)V
-
refreshPositionAndAngles
Sets the entity's position, yaw, and pitch, and refreshes several position-related fields.This should be used over other methods for setting positions of mobs.
- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lgu;FF)V
intermediary method_5725
Lnet/minecraft/class_1297;method_5725(Lnet/minecraft/class_2338;FF)V
named refreshPositionAndAngles
Lnet/minecraft/entity/Entity;refreshPositionAndAngles(Lnet/minecraft/util/math/BlockPos;FF)V
-
refreshPositionAndAngles
public void refreshPositionAndAngles(double x, double y, double z, float yaw, float pitch) Sets the entity's position, yaw, and pitch, and refreshes several position-related fields.This should be used over other methods for setting positions of mobs.
- See Also:
- Mappings:
Namespace Name Mixin selector official b
Lbfh;b(DDDFF)V
intermediary method_5808
Lnet/minecraft/class_1297;method_5808(DDDFF)V
named refreshPositionAndAngles
Lnet/minecraft/entity/Entity;refreshPositionAndAngles(DDDFF)V
-
resetPosition
public final void resetPosition()- Mappings:
Namespace Name Mixin selector official bj
Lbfh;bj()V
intermediary method_22862
Lnet/minecraft/class_1297;method_22862()V
named resetPosition
Lnet/minecraft/entity/Entity;resetPosition()V
-
distanceTo
Returns the distance between this entity andentity
.- Returns:
- the distance between this entity and
entity
- Mappings:
Namespace Name Mixin selector official e
Lbfh;e(Lbfh;)F
intermediary method_5739
Lnet/minecraft/class_1297;method_5739(Lnet/minecraft/class_1297;)F
named distanceTo
Lnet/minecraft/entity/Entity;distanceTo(Lnet/minecraft/entity/Entity;)F
-
squaredDistanceTo
public double squaredDistanceTo(double x, double y, double z) Returns the squared distance between this entity and the given position.- Returns:
- the squared distance between this entity and the given position
- Mappings:
Namespace Name Mixin selector official i
Lbfh;i(DDD)D
intermediary method_5649
Lnet/minecraft/class_1297;method_5649(DDD)D
named squaredDistanceTo
Lnet/minecraft/entity/Entity;squaredDistanceTo(DDD)D
-
squaredDistanceTo
Returns the squared distance between this entity andentity
.- Returns:
- the squared distance between this entity and
entity
- Mappings:
Namespace Name Mixin selector official f
Lbfh;f(Lbfh;)D
intermediary method_5858
Lnet/minecraft/class_1297;method_5858(Lnet/minecraft/class_1297;)D
named squaredDistanceTo
Lnet/minecraft/entity/Entity;squaredDistanceTo(Lnet/minecraft/entity/Entity;)D
-
squaredDistanceTo
Returns the squared distance between this entity and the given position.- Returns:
- the squared distance between this entity and the given position
- Mappings:
Namespace Name Mixin selector official e
Lbfh;e(Leea;)D
intermediary method_5707
Lnet/minecraft/class_1297;method_5707(Lnet/minecraft/class_243;)D
named squaredDistanceTo
Lnet/minecraft/entity/Entity;squaredDistanceTo(Lnet/minecraft/util/math/Vec3d;)D
-
onPlayerCollision
Called when a player collides with the entity. Does nothing by default.This should be overridden if the collision logic is specific to players, such as picking up item entities, experience orbs, or arrows.
- Mappings:
Namespace Name Mixin selector official b_
Lbfh;b_(Lbym;)V
intermediary method_5694
Lnet/minecraft/class_1297;method_5694(Lnet/minecraft/class_1657;)V
named onPlayerCollision
Lnet/minecraft/entity/Entity;onPlayerCollision(Lnet/minecraft/entity/player/PlayerEntity;)V
-
pushAwayFrom
- Mappings:
Namespace Name Mixin selector official g
Lbfh;g(Lbfh;)V
intermediary method_5697
Lnet/minecraft/class_1297;method_5697(Lnet/minecraft/class_1297;)V
named pushAwayFrom
Lnet/minecraft/entity/Entity;pushAwayFrom(Lnet/minecraft/entity/Entity;)V
-
addVelocity
public void addVelocity(double deltaX, double deltaY, double deltaZ) - Mappings:
Namespace Name Mixin selector official j
Lbfh;j(DDD)V
intermediary method_5762
Lnet/minecraft/class_1297;method_5762(DDD)V
named addVelocity
Lnet/minecraft/entity/Entity;addVelocity(DDD)V
-
scheduleVelocityUpdate
protected void scheduleVelocityUpdate()- Mappings:
Namespace Name Mixin selector official bk
Lbfh;bk()V
intermediary method_5785
Lnet/minecraft/class_1297;method_5785()V
named scheduleVelocityUpdate
Lnet/minecraft/entity/Entity;scheduleVelocityUpdate()V
-
damage
Applies a damage to this entity. The exact implementation differs between subclasses.LivingEntity
has health value, and damaging the entity decreases it. This also handles shields, extra damage to helmets for falling blocks, setting the attacker, playing hurt sound, etc.Some entities like
ItemEntity
also have health value, which the overridden method decrements. There also exist several entities, likeEndCrystalEntity
, where any damage discards the entity (perhaps with an explosion).If this is overridden, it must check the result of
isInvulnerableTo(net.minecraft.entity.damage.DamageSource)
and return early.- Returns:
- whether the entity was actually damaged
- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lbem;F)Z
intermediary method_5643
Lnet/minecraft/class_1297;method_5643(Lnet/minecraft/class_1282;F)Z
named damage
Lnet/minecraft/entity/Entity;damage(Lnet/minecraft/entity/damage/DamageSource;F)Z
-
getRotationVec
- Mappings:
Namespace Name Mixin selector official f
Lbfh;f(F)Leea;
intermediary method_5828
Lnet/minecraft/class_1297;method_5828(F)Lnet/minecraft/class_243;
named getRotationVec
Lnet/minecraft/entity/Entity;getRotationVec(F)Lnet/minecraft/util/math/Vec3d;
-
getPitch
public float getPitch(float tickDelta) - Mappings:
Namespace Name Mixin selector official g
Lbfh;g(F)F
intermediary method_5695
Lnet/minecraft/class_1297;method_5695(F)F
named getPitch
Lnet/minecraft/entity/Entity;getPitch(F)F
-
getYaw
public float getYaw(float tickDelta) - Mappings:
Namespace Name Mixin selector official h
Lbfh;h(F)F
intermediary method_5705
Lnet/minecraft/class_1297;method_5705(F)F
named getYaw
Lnet/minecraft/entity/Entity;getYaw(F)F
-
getRotationVector
- Mappings:
Namespace Name Mixin selector official b
Lbfh;b(FF)Leea;
intermediary method_5631
Lnet/minecraft/class_1297;method_5631(FF)Lnet/minecraft/class_243;
named getRotationVector
Lnet/minecraft/entity/Entity;getRotationVector(FF)Lnet/minecraft/util/math/Vec3d;
-
getOppositeRotationVector
- Mappings:
Namespace Name Mixin selector official i
Lbfh;i(F)Leea;
intermediary method_18864
Lnet/minecraft/class_1297;method_18864(F)Lnet/minecraft/class_243;
named getOppositeRotationVector
Lnet/minecraft/entity/Entity;getOppositeRotationVector(F)Lnet/minecraft/util/math/Vec3d;
-
getOppositeRotationVector
- Mappings:
Namespace Name Mixin selector official c
Lbfh;c(FF)Leea;
intermediary method_18863
Lnet/minecraft/class_1297;method_18863(FF)Lnet/minecraft/class_243;
named getOppositeRotationVector
Lnet/minecraft/entity/Entity;getOppositeRotationVector(FF)Lnet/minecraft/util/math/Vec3d;
-
getEyePos
Returns the position of the eye.- Returns:
- the position of the eye
- See Also:
- Mappings:
Namespace Name Mixin selector official bl
Lbfh;bl()Leea;
intermediary method_33571
Lnet/minecraft/class_1297;method_33571()Lnet/minecraft/class_243;
named getEyePos
Lnet/minecraft/entity/Entity;getEyePos()Lnet/minecraft/util/math/Vec3d;
-
getCameraPosVec
- Mappings:
Namespace Name Mixin selector official j
Lbfh;j(F)Leea;
intermediary method_5836
Lnet/minecraft/class_1297;method_5836(F)Lnet/minecraft/class_243;
named getCameraPosVec
Lnet/minecraft/entity/Entity;getCameraPosVec(F)Lnet/minecraft/util/math/Vec3d;
-
getClientCameraPosVec
- Mappings:
Namespace Name Mixin selector official k
Lbfh;k(F)Leea;
intermediary method_31166
Lnet/minecraft/class_1297;method_31166(F)Lnet/minecraft/class_243;
named getClientCameraPosVec
Lnet/minecraft/entity/Entity;getClientCameraPosVec(F)Lnet/minecraft/util/math/Vec3d;
-
getLerpedPos
- Mappings:
Namespace Name Mixin selector official l
Lbfh;l(F)Leea;
intermediary method_30950
Lnet/minecraft/class_1297;method_30950(F)Lnet/minecraft/class_243;
named getLerpedPos
Lnet/minecraft/entity/Entity;getLerpedPos(F)Lnet/minecraft/util/math/Vec3d;
-
raycast
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(DFZ)Ledy;
intermediary method_5745
Lnet/minecraft/class_1297;method_5745(DFZ)Lnet/minecraft/class_239;
named raycast
Lnet/minecraft/entity/Entity;raycast(DFZ)Lnet/minecraft/util/hit/HitResult;
-
canBeHitByProjectile
public boolean canBeHitByProjectile()- Mappings:
Namespace Name Mixin selector official bm
Lbfh;bm()Z
intermediary method_49108
Lnet/minecraft/class_1297;method_49108()Z
named canBeHitByProjectile
Lnet/minecraft/entity/Entity;canBeHitByProjectile()Z
-
canHit
public boolean canHit()Returns whether the entity can be hit with a projectile or be targeted by the player crosshair.- Returns:
- whether the entity can be hit with a projectile or be targeted by the player crosshair
- Mappings:
Namespace Name Mixin selector official bn
Lbfh;bn()Z
intermediary method_5863
Lnet/minecraft/class_1297;method_5863()Z
named canHit
Lnet/minecraft/entity/Entity;canHit()Z
-
isPushable
public boolean isPushable()Returns whether the entity can be pushed by other entities.- Returns:
- whether the entity can be pushed by other entities
- Mappings:
Namespace Name Mixin selector official bo
Lbfh;bo()Z
intermediary method_5810
Lnet/minecraft/class_1297;method_5810()Z
named isPushable
Lnet/minecraft/entity/Entity;isPushable()Z
-
updateKilledAdvancementCriterion
public void updateKilledAdvancementCriterion(Entity entityKilled, int score, DamageSource damageSource) - Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lbfh;ILbem;)V
intermediary method_5716
Lnet/minecraft/class_1297;method_5716(Lnet/minecraft/class_1297;ILnet/minecraft/class_1282;)V
named updateKilledAdvancementCriterion
Lnet/minecraft/entity/Entity;updateKilledAdvancementCriterion(Lnet/minecraft/entity/Entity;ILnet/minecraft/entity/damage/DamageSource;)V
-
shouldRender
public boolean shouldRender(double cameraX, double cameraY, double cameraZ) - Mappings:
Namespace Name Mixin selector official k
Lbfh;k(DDD)Z
intermediary method_5727
Lnet/minecraft/class_1297;method_5727(DDD)Z
named shouldRender
Lnet/minecraft/entity/Entity;shouldRender(DDD)Z
-
shouldRender
public boolean shouldRender(double distance) - Mappings:
Namespace Name Mixin selector official a
Lbfh;a(D)Z
intermediary method_5640
Lnet/minecraft/class_1297;method_5640(D)Z
named shouldRender
Lnet/minecraft/entity/Entity;shouldRender(D)Z
-
saveSelfNbt
- Mappings:
Namespace Name Mixin selector official d
Lbfh;d(Lqr;)Z
intermediary method_5786
Lnet/minecraft/class_1297;method_5786(Lnet/minecraft/class_2487;)Z
named saveSelfNbt
Lnet/minecraft/entity/Entity;saveSelfNbt(Lnet/minecraft/nbt/NbtCompound;)Z
-
saveNbt
- Mappings:
Namespace Name Mixin selector official e
Lbfh;e(Lqr;)Z
intermediary method_5662
Lnet/minecraft/class_1297;method_5662(Lnet/minecraft/class_2487;)Z
named saveNbt
Lnet/minecraft/entity/Entity;saveNbt(Lnet/minecraft/nbt/NbtCompound;)Z
-
writeNbt
- Mappings:
Namespace Name Mixin selector official f
Lbfh;f(Lqr;)Lqr;
intermediary method_5647
Lnet/minecraft/class_1297;method_5647(Lnet/minecraft/class_2487;)Lnet/minecraft/class_2487;
named writeNbt
Lnet/minecraft/entity/Entity;writeNbt(Lnet/minecraft/nbt/NbtCompound;)Lnet/minecraft/nbt/NbtCompound;
-
readNbt
- Mappings:
Namespace Name Mixin selector official g
Lbfh;g(Lqr;)V
intermediary method_5651
Lnet/minecraft/class_1297;method_5651(Lnet/minecraft/class_2487;)V
named readNbt
Lnet/minecraft/entity/Entity;readNbt(Lnet/minecraft/nbt/NbtCompound;)V
-
shouldSetPositionOnLoad
protected boolean shouldSetPositionOnLoad()- Mappings:
Namespace Name Mixin selector official bp
Lbfh;bp()Z
intermediary method_5638
Lnet/minecraft/class_1297;method_5638()Z
named shouldSetPositionOnLoad
Lnet/minecraft/entity/Entity;shouldSetPositionOnLoad()Z
-
getSavedEntityId
- Mappings:
Namespace Name Mixin selector official bq
Lbfh;bq()Ljava/lang/String;
intermediary method_5653
Lnet/minecraft/class_1297;method_5653()Ljava/lang/String;
named getSavedEntityId
Lnet/minecraft/entity/Entity;getSavedEntityId()Ljava/lang/String;
-
readCustomDataFromNbt
Reads custom data fromnbt
. Subclasses has to implement this.NBT is a storage format; therefore, a data from NBT is loaded to an entity instance's fields, which are used for other operations instead of the NBT. The data is written back to NBT when saving the entity.
nbt
might not have all expected keys, or might have a key whose value does not meet the requirement (such as the type or the range). This method should fall back to a reasonable default value instead of throwing an exception.- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lqr;)V
intermediary method_5749
Lnet/minecraft/class_1297;method_5749(Lnet/minecraft/class_2487;)V
named readCustomDataFromNbt
Lnet/minecraft/entity/Entity;readCustomDataFromNbt(Lnet/minecraft/nbt/NbtCompound;)V
-
writeCustomDataToNbt
Writes custom data tonbt
. Subclasses has to implement this.NBT is a storage format; therefore, a data from NBT is loaded to an entity instance's fields, which are used for other operations instead of the NBT. The data is written back to NBT when saving the entity.
- See Also:
- Mappings:
Namespace Name Mixin selector official b
Lbfh;b(Lqr;)V
intermediary method_5652
Lnet/minecraft/class_1297;method_5652(Lnet/minecraft/class_2487;)V
named writeCustomDataToNbt
Lnet/minecraft/entity/Entity;writeCustomDataToNbt(Lnet/minecraft/nbt/NbtCompound;)V
-
toNbtList
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a([D)Lqx;
intermediary method_5846
Lnet/minecraft/class_1297;method_5846([D)Lnet/minecraft/class_2499;
named toNbtList
Lnet/minecraft/entity/Entity;toNbtList([D)Lnet/minecraft/nbt/NbtList;
-
toNbtList
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a([F)Lqx;
intermediary method_5726
Lnet/minecraft/class_1297;method_5726([F)Lnet/minecraft/class_2499;
named toNbtList
Lnet/minecraft/entity/Entity;toNbtList([F)Lnet/minecraft/nbt/NbtList;
-
dropItem
Drops oneitem
at the entity's position.- Returns:
- the spawned item entity, or
null
if called on the client - See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lcmj;)Lbvf;
intermediary method_5706
Lnet/minecraft/class_1297;method_5706(Lnet/minecraft/class_1935;)Lnet/minecraft/class_1542;
named dropItem
Lnet/minecraft/entity/Entity;dropItem(Lnet/minecraft/item/ItemConvertible;)Lnet/minecraft/entity/ItemEntity;
-
dropItem
Drops oneitem
at the entity's position with the given Y offset.- Returns:
- the spawned item entity, or
null
if called on the client - See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lcmj;I)Lbvf;
intermediary method_5870
Lnet/minecraft/class_1297;method_5870(Lnet/minecraft/class_1935;I)Lnet/minecraft/class_1542;
named dropItem
Lnet/minecraft/entity/Entity;dropItem(Lnet/minecraft/item/ItemConvertible;I)Lnet/minecraft/entity/ItemEntity;
-
dropStack
Dropsstack
at the entity's position.- Returns:
- the spawned item entity, or
null
if the stack is empty or if called on the client - See Also:
- Mappings:
Namespace Name Mixin selector official b
Lbfh;b(Lcfx;)Lbvf;
intermediary method_5775
Lnet/minecraft/class_1297;method_5775(Lnet/minecraft/class_1799;)Lnet/minecraft/class_1542;
named dropStack
Lnet/minecraft/entity/Entity;dropStack(Lnet/minecraft/item/ItemStack;)Lnet/minecraft/entity/ItemEntity;
-
dropStack
Dropsstack
at the entity's position with the given Y offset.- Returns:
- the spawned item entity, or
null
if the stack is empty or if called on the client - See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lcfx;F)Lbvf;
intermediary method_5699
Lnet/minecraft/class_1297;method_5699(Lnet/minecraft/class_1799;F)Lnet/minecraft/class_1542;
named dropStack
Lnet/minecraft/entity/Entity;dropStack(Lnet/minecraft/item/ItemStack;F)Lnet/minecraft/entity/ItemEntity;
-
isAlive
public boolean isAlive()Returns whether the entity is alive.For non-
LivingEntity
, this is the same as negatingisRemoved()
.LivingEntity
checks the entity's health in addition to the removal.- Returns:
- whether the entity is alive
- Mappings:
Namespace Name Mixin selector official br
Lbfh;br()Z
intermediary method_5805
Lnet/minecraft/class_1297;method_5805()Z
named isAlive
Lnet/minecraft/entity/Entity;isAlive()Z
-
isInsideWall
public boolean isInsideWall()Returns whether the entity is in a wall and should suffocate.This returns
false
ifnoClip
istrue
; otherwise, this returnstrue
if the eye position is occupied by a block that can suffocate.- Returns:
- whether the entity is in a wall and should suffocate
- Mappings:
Namespace Name Mixin selector official bs
Lbfh;bs()Z
intermediary method_5757
Lnet/minecraft/class_1297;method_5757()Z
named isInsideWall
Lnet/minecraft/entity/Entity;isInsideWall()Z
-
interact
Called when a player interacts with this entity.- Parameters:
player
- the playerhand
- the hand the player used to interact with this entity- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lbym;Lbdv;)Lbdw;
intermediary method_5688
Lnet/minecraft/class_1297;method_5688(Lnet/minecraft/class_1657;Lnet/minecraft/class_1268;)Lnet/minecraft/class_1269;
named interact
Lnet/minecraft/entity/Entity;interact(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/Hand;)Lnet/minecraft/util/ActionResult;
-
collidesWith
Returns whether this entity cannot occupy the same space withother
.This returns
false
ifother
is connected through vehicles.- Returns:
- whether this entity cannot occupy the same space with
other
- See Also:
- Mappings:
Namespace Name Mixin selector official h
Lbfh;h(Lbfh;)Z
intermediary method_30949
Lnet/minecraft/class_1297;method_30949(Lnet/minecraft/class_1297;)Z
named collidesWith
Lnet/minecraft/entity/Entity;collidesWith(Lnet/minecraft/entity/Entity;)Z
-
isCollidable
public boolean isCollidable()Returns whether other entities cannot occupy the same space with this entity.If
true
, other entities can stand on this entity without falling.BoatEntity
andShulkerEntity
has this behavior.- Returns:
- whether other entities cannot occupy the same space with this entity
- See Also:
- Mappings:
Namespace Name Mixin selector official bt
Lbfh;bt()Z
intermediary method_30948
Lnet/minecraft/class_1297;method_30948()Z
named isCollidable
Lnet/minecraft/entity/Entity;isCollidable()Z
-
tickRiding
public void tickRiding()- Mappings:
Namespace Name Mixin selector official bu
Lbfh;bu()V
intermediary method_5842
Lnet/minecraft/class_1297;method_5842()V
named tickRiding
Lnet/minecraft/entity/Entity;tickRiding()V
-
updatePassengerPosition
- Mappings:
Namespace Name Mixin selector official i
Lbfh;i(Lbfh;)V
intermediary method_5865
Lnet/minecraft/class_1297;method_5865(Lnet/minecraft/class_1297;)V
named updatePassengerPosition
Lnet/minecraft/entity/Entity;updatePassengerPosition(Lnet/minecraft/entity/Entity;)V
-
updatePassengerPosition
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lbfh;Lbfh$a;)V
intermediary method_24201
Lnet/minecraft/class_1297;method_24201(Lnet/minecraft/class_1297;Lnet/minecraft/class_1297$class_4738;)V
named updatePassengerPosition
Lnet/minecraft/entity/Entity;updatePassengerPosition(Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity$PositionUpdater;)V
-
onPassengerLookAround
- Mappings:
Namespace Name Mixin selector official j
Lbfh;j(Lbfh;)V
intermediary method_5644
Lnet/minecraft/class_1297;method_5644(Lnet/minecraft/class_1297;)V
named onPassengerLookAround
Lnet/minecraft/entity/Entity;onPassengerLookAround(Lnet/minecraft/entity/Entity;)V
-
getHeightOffset
public double getHeightOffset()- Mappings:
Namespace Name Mixin selector official bv
Lbfh;bv()D
intermediary method_5678
Lnet/minecraft/class_1297;method_5678()D
named getHeightOffset
Lnet/minecraft/entity/Entity;getHeightOffset()D
-
getMountedHeightOffset
public double getMountedHeightOffset()- Mappings:
Namespace Name Mixin selector official bw
Lbfh;bw()D
intermediary method_5621
Lnet/minecraft/class_1297;method_5621()D
named getMountedHeightOffset
Lnet/minecraft/entity/Entity;getMountedHeightOffset()D
-
startRiding
Starts ridingentity
.For example,
player.startRiding(horse)
causes the player to ride a horse; the opposite,horse.startRiding(player)
, will cause the horse to ride a player.This fails when this entity is already riding the entity (or vice versa), or when this entity does not allow riding other entities (or vice versa). If this entity is already riding another entity, it will stop riding that entity first.
- Returns:
- whether this entity successfully started riding
- See Also:
- Mappings:
Namespace Name Mixin selector official k
Lbfh;k(Lbfh;)Z
intermediary method_5804
Lnet/minecraft/class_1297;method_5804(Lnet/minecraft/class_1297;)Z
named startRiding
Lnet/minecraft/entity/Entity;startRiding(Lnet/minecraft/entity/Entity;)Z
-
isLiving
public boolean isLiving()- Mappings:
Namespace Name Mixin selector official bx
Lbfh;bx()Z
intermediary method_5709
Lnet/minecraft/class_1297;method_5709()Z
named isLiving
Lnet/minecraft/entity/Entity;isLiving()Z
-
startRiding
Starts ridingentity
.For example,
player.startRiding(horse)
causes the player to ride a horse; the opposite,horse.startRiding(player)
, will cause the horse to ride a player.This fails when this entity is already riding the entity (or vice versa), or when this entity does not allow riding other entities (or vice versa) unless
force
istrue
. If this entity is already riding another entity, it will stop riding that entity first.- Parameters:
force
- whether to bypass the entity's rideability check- Returns:
- whether this entity successfully started riding
- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lbfh;Z)Z
intermediary method_5873
Lnet/minecraft/class_1297;method_5873(Lnet/minecraft/class_1297;Z)Z
named startRiding
Lnet/minecraft/entity/Entity;startRiding(Lnet/minecraft/entity/Entity;Z)Z
-
canStartRiding
Returns whether this entity can rideentity
.Returning
false
causes the entity to be unable to ride other entities. For example,WitherEntity
overrides this to returnfalse
, so withers cannot ride boats or minecarts. Note that this check can be bypassed by passingtrue
tostartRiding(Entity, boolean)
.This is the opposite of
canAddPassenger(net.minecraft.entity.Entity)
.- Returns:
- whether this entity can ride
entity
- See Also:
- Mappings:
Namespace Name Mixin selector official l
Lbfh;l(Lbfh;)Z
intermediary method_5860
Lnet/minecraft/class_1297;method_5860(Lnet/minecraft/class_1297;)Z
named canStartRiding
Lnet/minecraft/entity/Entity;canStartRiding(Lnet/minecraft/entity/Entity;)Z
-
wouldPoseNotCollide
Returnstrue
if the entity would not collide with blocks if the pose ispose
.- Returns:
true
if the entity would not collide with blocks if the pose ispose
- Mappings:
Namespace Name Mixin selector official d
Lbfh;d(Lbgj;)Z
intermediary method_20233
Lnet/minecraft/class_1297;method_20233(Lnet/minecraft/class_4050;)Z
named wouldPoseNotCollide
Lnet/minecraft/entity/Entity;wouldPoseNotCollide(Lnet/minecraft/entity/EntityPose;)Z
-
removeAllPassengers
public void removeAllPassengers()Causes all passengers of this entity to stop riding this entity.For example,
boat.removeAllPassengers()
will dismount all passengers of the boat.- See Also:
- Mappings:
Namespace Name Mixin selector official by
Lbfh;by()V
intermediary method_5772
Lnet/minecraft/class_1297;method_5772()V
named removeAllPassengers
Lnet/minecraft/entity/Entity;removeAllPassengers()V
-
dismountVehicle
public void dismountVehicle()Dismounts the vehicle if present.For players, will not trigger any networking changes. Use
stopRiding()
instead.- See Also:
- Mappings:
Namespace Name Mixin selector official bz
Lbfh;bz()V
intermediary method_29239
Lnet/minecraft/class_1297;method_29239()V
named dismountVehicle
Lnet/minecraft/entity/Entity;dismountVehicle()V
-
stopRiding
public void stopRiding()Stops riding the vehicle if present.For example, if
player
is riding on a horse,player.stopRiding()
will dismount that player from the horse.- See Also:
- Mappings:
Namespace Name Mixin selector official bA
Lbfh;bA()V
intermediary method_5848
Lnet/minecraft/class_1297;method_5848()V
named stopRiding
Lnet/minecraft/entity/Entity;stopRiding()V
-
addPassenger
Addspassenger
as a passenger. This should not be called normally; callstartRiding(Entity)
instead. (Note that the entity to pass and the entity to call are swapped in this case;entity.startRiding(vehicle)
is the equivalent ofvehicle.addPassenger(entity)
.)- Throws:
IllegalStateException
- when the method is called directly- Mappings:
Namespace Name Mixin selector official m
Lbfh;m(Lbfh;)V
intermediary method_5627
Lnet/minecraft/class_1297;method_5627(Lnet/minecraft/class_1297;)V
named addPassenger
Lnet/minecraft/entity/Entity;addPassenger(Lnet/minecraft/entity/Entity;)V
-
removePassenger
Removespassenger
from the passengers. This should not be called normally; callstopRiding()
instead. (Note that vehicles are not passed to that method;entity.stopRiding()
is the equivalent ofvehicle.removePassenger(entity)
.)- Throws:
IllegalStateException
- when the method is called directly- Mappings:
Namespace Name Mixin selector official n
Lbfh;n(Lbfh;)V
intermediary method_5793
Lnet/minecraft/class_1297;method_5793(Lnet/minecraft/class_1297;)V
named removePassenger
Lnet/minecraft/entity/Entity;removePassenger(Lnet/minecraft/entity/Entity;)V
-
canAddPassenger
Returns whetherentity
can ride this entity.Returning
false
causes other entities to be unable to ride this entity. For example,BoatEntity
uses this to restrict how many passengers can ride the same boat (2 for normal, 1 for chest boat).This is the opposite of
canStartRiding(net.minecraft.entity.Entity)
.- Returns:
- whether
entity
can ride this entity - See Also:
- Mappings:
Namespace Name Mixin selector official o
Lbfh;o(Lbfh;)Z
intermediary method_5818
Lnet/minecraft/class_1297;method_5818(Lnet/minecraft/class_1297;)Z
named canAddPassenger
Lnet/minecraft/entity/Entity;canAddPassenger(Lnet/minecraft/entity/Entity;)Z
-
couldAcceptPassenger
protected boolean couldAcceptPassenger()Returnstrue
if this entity supports passengers in general.- Returns:
true
if this entity supports passengers in general- Mappings:
Namespace Name Mixin selector official bB
Lbfh;bB()Z
intermediary method_48921
Lnet/minecraft/class_1297;method_48921()Z
named couldAcceptPassenger
Lnet/minecraft/entity/Entity;couldAcceptPassenger()Z
-
updateTrackedPositionAndAngles
public void updateTrackedPositionAndAngles(double x, double y, double z, float yaw, float pitch, int interpolationSteps, boolean interpolate) - Mappings:
Namespace Name Mixin selector official a
Lbfh;a(DDDFFIZ)V
intermediary method_5759
Lnet/minecraft/class_1297;method_5759(DDDFFIZ)V
named updateTrackedPositionAndAngles
Lnet/minecraft/entity/Entity;updateTrackedPositionAndAngles(DDDFFIZ)V
-
updateTrackedHeadRotation
public void updateTrackedHeadRotation(float yaw, int interpolationSteps) - Mappings:
Namespace Name Mixin selector official a
Lbfh;a(FI)V
intermediary method_5683
Lnet/minecraft/class_1297;method_5683(FI)V
named updateTrackedHeadRotation
Lnet/minecraft/entity/Entity;updateTrackedHeadRotation(FI)V
-
getTargetingMargin
public float getTargetingMargin()Returns the margin around the entity's bounding box where the entity targeting is still successful.- Returns:
- the margin around the entity's bounding box where the entity targeting is still successful
- API Note:
ExplosiveProjectileEntity
overrides this method to return1.0f
, which expands the ghast fireball's effective hitbox.- Mappings:
Namespace Name Mixin selector official bC
Lbfh;bC()F
intermediary method_5871
Lnet/minecraft/class_1297;method_5871()F
named getTargetingMargin
Lnet/minecraft/entity/Entity;getTargetingMargin()F
-
getRotationVector
- Mappings:
Namespace Name Mixin selector official bD
Lbfh;bD()Leea;
intermediary method_5720
Lnet/minecraft/class_1297;method_5720()Lnet/minecraft/class_243;
named getRotationVector
Lnet/minecraft/entity/Entity;getRotationVector()Lnet/minecraft/util/math/Vec3d;
-
getHandPosOffset
Returns the offset of the hand that holdsitem
.This returns
Vec3d.ZERO
if the entity is not a player.- Returns:
- the offset of the hand that holds
item
- API Note:
- The offset is applied to the position of the firework rocket particle when used by players.
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lcfs;)Leea;
intermediary method_40123
Lnet/minecraft/class_1297;method_40123(Lnet/minecraft/class_1792;)Lnet/minecraft/class_243;
named getHandPosOffset
Lnet/minecraft/entity/Entity;getHandPosOffset(Lnet/minecraft/item/Item;)Lnet/minecraft/util/math/Vec3d;
-
getRotationClient
- Mappings:
Namespace Name Mixin selector official bE
Lbfh;bE()Ledz;
intermediary method_5802
Lnet/minecraft/class_1297;method_5802()Lnet/minecraft/class_241;
named getRotationClient
Lnet/minecraft/entity/Entity;getRotationClient()Lnet/minecraft/util/math/Vec2f;
-
getRotationVecClient
- Mappings:
Namespace Name Mixin selector official bF
Lbfh;bF()Leea;
intermediary method_5663
Lnet/minecraft/class_1297;method_5663()Lnet/minecraft/class_243;
named getRotationVecClient
Lnet/minecraft/entity/Entity;getRotationVecClient()Lnet/minecraft/util/math/Vec3d;
-
setInNetherPortal
- Mappings:
Namespace Name Mixin selector official f
Lbfh;f(Lgu;)V
intermediary method_5717
Lnet/minecraft/class_1297;method_5717(Lnet/minecraft/class_2338;)V
named setInNetherPortal
Lnet/minecraft/entity/Entity;setInNetherPortal(Lnet/minecraft/util/math/BlockPos;)V
-
tickPortal
protected void tickPortal()- Mappings:
Namespace Name Mixin selector official bG
Lbfh;bG()V
intermediary method_18379
Lnet/minecraft/class_1297;method_18379()V
named tickPortal
Lnet/minecraft/entity/Entity;tickPortal()V
-
getDefaultPortalCooldown
public int getDefaultPortalCooldown()Returns the entity's default portal cooldown.This is 300 ticks by default, or 10 ticks for players.
- Returns:
- the entity's default portal cooldown
- See Also:
- Mappings:
Namespace Name Mixin selector official bH
Lbfh;bH()I
intermediary method_5806
Lnet/minecraft/class_1297;method_5806()I
named getDefaultPortalCooldown
Lnet/minecraft/entity/Entity;getDefaultPortalCooldown()I
-
setVelocityClient
public void setVelocityClient(double x, double y, double z) - Mappings:
Namespace Name Mixin selector official l
Lbfh;l(DDD)V
intermediary method_5750
Lnet/minecraft/class_1297;method_5750(DDD)V
named setVelocityClient
Lnet/minecraft/entity/Entity;setVelocityClient(DDD)V
-
onDamaged
- Mappings:
Namespace Name Mixin selector official c
Lbfh;c(Lbem;)V
intermediary method_48922
Lnet/minecraft/class_1297;method_48922(Lnet/minecraft/class_1282;)V
named onDamaged
Lnet/minecraft/entity/Entity;onDamaged(Lnet/minecraft/entity/damage/DamageSource;)V
-
handleStatus
public void handleStatus(byte status) Called on the client when the entity receives an entity status from the server. They are often used to spawn particles or play sounds. Subclasses can override this method to handle custom entity status.- See Also:
- API Note:
- To send an entity status, use
World.sendEntityStatus(net.minecraft.entity.Entity, byte)
. - Mappings:
Namespace Name Mixin selector official b
Lbfh;b(B)V
intermediary method_5711
Lnet/minecraft/class_1297;method_5711(B)V
named handleStatus
Lnet/minecraft/entity/Entity;handleStatus(B)V
-
animateDamage
public void animateDamage(float yaw) Called on the client to animate the entity's damage (the wobble).- Mappings:
Namespace Name Mixin selector official m
Lbfh;m(F)V
intermediary method_5879
Lnet/minecraft/class_1297;method_5879(F)V
named animateDamage
Lnet/minecraft/entity/Entity;animateDamage(F)V
-
getHandItems
Returns an iterable of item stacks held in the hands.- Returns:
- an iterable of item stacks held in the hands
- See Also:
- Mappings:
Namespace Name Mixin selector official bI
Lbfh;bI()Ljava/lang/Iterable;
intermediary method_5877
Lnet/minecraft/class_1297;method_5877()Ljava/lang/Iterable;
named getHandItems
Lnet/minecraft/entity/Entity;getHandItems()Ljava/lang/Iterable;
-
getArmorItems
Returns an iterable of item stacks equipped as armor.- Returns:
- an iterable of item stacks equipped as armor
- See Also:
- Mappings:
Namespace Name Mixin selector official bJ
Lbfh;bJ()Ljava/lang/Iterable;
intermediary method_5661
Lnet/minecraft/class_1297;method_5661()Ljava/lang/Iterable;
named getArmorItems
Lnet/minecraft/entity/Entity;getArmorItems()Ljava/lang/Iterable;
-
getItemsEquipped
Returns an iterable of item stacks held in the hands or equipped as armor.- Returns:
- an iterable of item stacks held in the hands or equipped as armor
- See Also:
- Mappings:
Namespace Name Mixin selector official bK
Lbfh;bK()Ljava/lang/Iterable;
intermediary method_5743
Lnet/minecraft/class_1297;method_5743()Ljava/lang/Iterable;
named getItemsEquipped
Lnet/minecraft/entity/Entity;getItemsEquipped()Ljava/lang/Iterable;
-
equipStack
Equipsstack
atslot
.This is also used to set an entity's mainhand or offhand stack. This overwrites any stacks present in that slot without dropping them.- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lbfm;Lcfx;)V
intermediary method_5673
Lnet/minecraft/class_1297;method_5673(Lnet/minecraft/class_1304;Lnet/minecraft/class_1799;)V
named equipStack
Lnet/minecraft/entity/Entity;equipStack(Lnet/minecraft/entity/EquipmentSlot;Lnet/minecraft/item/ItemStack;)V
-
isOnFire
public boolean isOnFire()Returns whether the entity is on fire and is not fire immune.- Returns:
- whether the entity is on fire and is not fire immune
- See Also:
- Mappings:
Namespace Name Mixin selector official bL
Lbfh;bL()Z
intermediary method_5809
Lnet/minecraft/class_1297;method_5809()Z
named isOnFire
Lnet/minecraft/entity/Entity;isOnFire()Z
-
hasVehicle
public boolean hasVehicle()Returns whether this entity is riding an entity.This is the opposite of
hasPassengers()
.- Returns:
- whether this entity is riding an entity
- See Also:
- Mappings:
Namespace Name Mixin selector official bM
Lbfh;bM()Z
intermediary method_5765
Lnet/minecraft/class_1297;method_5765()Z
named hasVehicle
Lnet/minecraft/entity/Entity;hasVehicle()Z
-
hasPassengers
public boolean hasPassengers()Returns whether another entity is riding this entity.This is the opposite of
hasVehicle()
.- Returns:
- whether another entity is riding this entity
- See Also:
- Mappings:
Namespace Name Mixin selector official bN
Lbfh;bN()Z
intermediary method_5782
Lnet/minecraft/class_1297;method_5782()Z
named hasPassengers
Lnet/minecraft/entity/Entity;hasPassengers()Z
-
shouldDismountUnderwater
public boolean shouldDismountUnderwater()Returns whether this vehicle should dismount the passenger if submerged underwater.- Returns:
- whether this vehicle should dismount the passenger if submerged underwater
- Mappings:
Namespace Name Mixin selector official bO
Lbfh;bO()Z
intermediary method_49693
Lnet/minecraft/class_1297;method_49693()Z
named shouldDismountUnderwater
Lnet/minecraft/entity/Entity;shouldDismountUnderwater()Z
-
setSneaking
public void setSneaking(boolean sneaking) Sets whether the entity is sneaking.- See Also:
- Mappings:
Namespace Name Mixin selector official g
Lbfh;g(Z)V
intermediary method_5660
Lnet/minecraft/class_1297;method_5660(Z)V
named setSneaking
Lnet/minecraft/entity/Entity;setSneaking(Z)V
-
isSneaking
public boolean isSneaking()Returns whether the entity is sneaking.This only returns
true
if the entity is a player and that player is pressing the Sneak key. See alsoisInSneakingPose()
.- Returns:
- whether the entity is sneaking
- See Also:
- Mappings:
Namespace Name Mixin selector official bP
Lbfh;bP()Z
intermediary method_5715
Lnet/minecraft/class_1297;method_5715()Z
named isSneaking
Lnet/minecraft/entity/Entity;isSneaking()Z
-
bypassesSteppingEffects
public boolean bypassesSteppingEffects()Returns whether the entity should bypass effects caused by stepping.This returns
isSneaking()
by default.- Returns:
- whether the entity should bypass effects caused by stepping
- See Also:
- API Note:
- Stepping effects include magma blocks dealing fire damage, turtle eggs breaking, or sculk sensors triggering.
- Mappings:
Namespace Name Mixin selector official bQ
Lbfh;bQ()Z
intermediary method_21749
Lnet/minecraft/class_1297;method_21749()Z
named bypassesSteppingEffects
Lnet/minecraft/entity/Entity;bypassesSteppingEffects()Z
-
bypassesLandingEffects
public boolean bypassesLandingEffects()Returns whether the entity should bypass effects caused by landing on a block.This returns
isSneaking()
by default.- Returns:
- whether the entity should bypass effects caused by landing on a block
- See Also:
- API Note:
- Landing effects include slime blocks nullifying the fall damage and slime blocks and beds bouncing the entity.
- Mappings:
Namespace Name Mixin selector official bR
Lbfh;bR()Z
intermediary method_21750
Lnet/minecraft/class_1297;method_21750()Z
named bypassesLandingEffects
Lnet/minecraft/entity/Entity;bypassesLandingEffects()Z
-
isSneaky
public boolean isSneaky()- Mappings:
Namespace Name Mixin selector official bS
Lbfh;bS()Z
intermediary method_21751
Lnet/minecraft/class_1297;method_21751()Z
named isSneaky
Lnet/minecraft/entity/Entity;isSneaky()Z
-
isDescending
public boolean isDescending()Returns whether the entity is actively descending.This affects scaffolding and powder snow (if the entity can walk on it), and returns
isSneaking()
by default. This returnsfalse
for entities descending a ladder, since the entity is not actively doing so, instead letting the gravity to do so.- Returns:
- whether the entity is actively descending
- Mappings:
Namespace Name Mixin selector official bT
Lbfh;bT()Z
intermediary method_21752
Lnet/minecraft/class_1297;method_21752()Z
named isDescending
Lnet/minecraft/entity/Entity;isDescending()Z
-
isInSneakingPose
public boolean isInSneakingPose()Returns whether the entity is in a crouching pose.Compared to
isSneaking()
, it only makes the entity appear crouching and does not bring other effects of sneaking, such as no less obvious name label rendering, no dismounting while riding, etc.This is used by vanilla for non-player entities to crouch, such as for foxes and cats. This is also used when the entity is a player and the player would otherwise collide with blocks (for example, when the player is in a 1.5 blocks tall tunnel).
- Returns:
- whether the entity is in a crouching pose
- Mappings:
Namespace Name Mixin selector official bU
Lbfh;bU()Z
intermediary method_18276
Lnet/minecraft/class_1297;method_18276()Z
named isInSneakingPose
Lnet/minecraft/entity/Entity;isInSneakingPose()Z
-
isSprinting
public boolean isSprinting()Returns whether the entity is sprinting.Swimming is also considered as sprinting. #setSprinting
- Returns:
- whether the entity is sprinting
- Mappings:
Namespace Name Mixin selector official bV
Lbfh;bV()Z
intermediary method_5624
Lnet/minecraft/class_1297;method_5624()Z
named isSprinting
Lnet/minecraft/entity/Entity;isSprinting()Z
-
setSprinting
public void setSprinting(boolean sprinting) Sets whether the entity is sprinting.- See Also:
- Mappings:
Namespace Name Mixin selector official h
Lbfh;h(Z)V
intermediary method_5728
Lnet/minecraft/class_1297;method_5728(Z)V
named setSprinting
Lnet/minecraft/entity/Entity;setSprinting(Z)V
-
isSwimming
public boolean isSwimming()Returns whether the entity is swimming.An entity is swimming if it is touching water, not riding any entities, and is sprinting. Note that to start swimming, the entity must first be submerged in water.
- Returns:
- whether the entity is swimming
- See Also:
- Mappings:
Namespace Name Mixin selector official bW
Lbfh;bW()Z
intermediary method_5681
Lnet/minecraft/class_1297;method_5681()Z
named isSwimming
Lnet/minecraft/entity/Entity;isSwimming()Z
-
isInSwimmingPose
public boolean isInSwimmingPose()Returns whether the entity is in swimming pose.This includes crawling entities and entities using elytra that aren't fall-flying. Players start crawling if they would otherwise collide with blocks (for example, when the player is in a 1 block tall tunnel).
- Returns:
- whether the entity is in swimming pose
- See Also:
- Mappings:
Namespace Name Mixin selector official bX
Lbfh;bX()Z
intermediary method_20232
Lnet/minecraft/class_1297;method_20232()Z
named isInSwimmingPose
Lnet/minecraft/entity/Entity;isInSwimmingPose()Z
-
isCrawling
public boolean isCrawling()Returns whether the entity is crawling.An entity is crawling if it is in swimming pose, but is not touching water. Players start crawling if they would otherwise collide with blocks (for example, when the player is in a 1 block tall tunnel).
- Returns:
- whether the entity is crawling
- See Also:
- Mappings:
Namespace Name Mixin selector official bY
Lbfh;bY()Z
intermediary method_20448
Lnet/minecraft/class_1297;method_20448()Z
named isCrawling
Lnet/minecraft/entity/Entity;isCrawling()Z
-
setSwimming
public void setSwimming(boolean swimming) Sets whether the entity is swimming.- See Also:
- Mappings:
Namespace Name Mixin selector official i
Lbfh;i(Z)V
intermediary method_5796
Lnet/minecraft/class_1297;method_5796(Z)V
named setSwimming
Lnet/minecraft/entity/Entity;setSwimming(Z)V
-
isGlowingLocal
public final boolean isGlowingLocal()Returns whether the entity is glowing, without checking the entity flags.- Returns:
- whether the entity is glowing, without checking the entity flags
- See Also:
- API Note:
- This is only used to copy entity data to NBT when bucketing.
- Mappings:
Namespace Name Mixin selector official bZ
Lbfh;bZ()Z
intermediary method_36361
Lnet/minecraft/class_1297;method_36361()Z
named isGlowingLocal
Lnet/minecraft/entity/Entity;isGlowingLocal()Z
-
setGlowing
public final void setGlowing(boolean glowing) Sets whether the entity is glowing.Glowing entities have an outline when rendered.
- See Also:
- Mappings:
Namespace Name Mixin selector official j
Lbfh;j(Z)V
intermediary method_5834
Lnet/minecraft/class_1297;method_5834(Z)V
named setGlowing
Lnet/minecraft/entity/Entity;setGlowing(Z)V
-
isGlowing
public boolean isGlowing()Returns whether the entity is glowing, checking the entity flags on the client.Glowing entities have an outline when rendered.
- Returns:
- whether the entity is glowing, checking the entity flags on the client
- See Also:
- Mappings:
Namespace Name Mixin selector official ca
Lbfh;ca()Z
intermediary method_5851
Lnet/minecraft/class_1297;method_5851()Z
named isGlowing
Lnet/minecraft/entity/Entity;isGlowing()Z
-
isInvisible
public boolean isInvisible()Returns whether the entity is invisible to everyone.Invisibility status effect and
ArmorStandEntity
'sInvisible
NBT key can cause an entity to be invisible.- Returns:
- whether the entity is invisible to everyone
- See Also:
- Mappings:
Namespace Name Mixin selector official cb
Lbfh;cb()Z
intermediary method_5767
Lnet/minecraft/class_1297;method_5767()Z
named isInvisible
Lnet/minecraft/entity/Entity;isInvisible()Z
-
isInvisibleTo
Returns whether the entity is invisible toplayer
.Spectators can see all entities, and entities on the same team as player's can see all entities if
AbstractTeam.shouldShowFriendlyInvisibles()
returnstrue
. Otherwise, this returnsisInvisible()
.- Returns:
- whether the entity is invisible to
player
- See Also:
- Mappings:
Namespace Name Mixin selector official d
Lbfh;d(Lbym;)Z
intermediary method_5756
Lnet/minecraft/class_1297;method_5756(Lnet/minecraft/class_1657;)Z
named isInvisibleTo
Lnet/minecraft/entity/Entity;isInvisibleTo(Lnet/minecraft/entity/player/PlayerEntity;)Z
-
updateEventHandler
Called when the entity is loaded to register game event handlers.Entities that listen to game events should first create an instance of
EntityGameEventHandler
in the entity's constructor, and override this to callcallback
. For example:if (this.world instanceof ServerWorld serverWorld) { callback.accept(this.handler, serverWorld); }
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Ljava/util/function/BiConsumer;)V
intermediary method_42147
Lnet/minecraft/class_1297;method_42147(Ljava/util/function/BiConsumer;)V
named updateEventHandler
Lnet/minecraft/entity/Entity;updateEventHandler(Ljava/util/function/BiConsumer;)V
-
getScoreboardTeam
Returns the scoreboard team the entity belongs to, ornull
if there is none.- Returns:
- the scoreboard team the entity belongs to, or
null
if there is none - Mappings:
Namespace Name Mixin selector official cc
Lbfh;cc()Lefa;
intermediary method_5781
Lnet/minecraft/class_1297;method_5781()Lnet/minecraft/class_270;
named getScoreboardTeam
Lnet/minecraft/entity/Entity;getScoreboardTeam()Lnet/minecraft/scoreboard/AbstractTeam;
-
isTeammate
Returns whether this entity andother
are in the same team.This returns
false
if this entity is not in any team.- Returns:
- whether this entity and
other
are in the same team - Mappings:
Namespace Name Mixin selector official p
Lbfh;p(Lbfh;)Z
intermediary method_5722
Lnet/minecraft/class_1297;method_5722(Lnet/minecraft/class_1297;)Z
named isTeammate
Lnet/minecraft/entity/Entity;isTeammate(Lnet/minecraft/entity/Entity;)Z
-
isTeamPlayer
Returns whether this entity is inteam
.This returns
false
if this entity is not in any team.- Returns:
- whether this entity is in
team
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lefa;)Z
intermediary method_5645
Lnet/minecraft/class_1297;method_5645(Lnet/minecraft/class_270;)Z
named isTeamPlayer
Lnet/minecraft/entity/Entity;isTeamPlayer(Lnet/minecraft/scoreboard/AbstractTeam;)Z
-
setInvisible
public void setInvisible(boolean invisible) Sets whether the entity is invisible to everyone.Invisibility status effect and
ArmorStandEntity
'sInvisible
NBT key can cause an entity to be invisible.- See Also:
- Mappings:
Namespace Name Mixin selector official k
Lbfh;k(Z)V
intermediary method_5648
Lnet/minecraft/class_1297;method_5648(Z)V
named setInvisible
Lnet/minecraft/entity/Entity;setInvisible(Z)V
-
getFlag
protected boolean getFlag(int index) Returns the entity flag with indexflag
.Entity flag is used to track whether the entity is sneaking, sprinting, invisible, etc.
- Returns:
- the entity flag with index
flag
- Mappings:
Namespace Name Mixin selector official i
Lbfh;i(I)Z
intermediary method_5795
Lnet/minecraft/class_1297;method_5795(I)Z
named getFlag
Lnet/minecraft/entity/Entity;getFlag(I)Z
-
setFlag
protected void setFlag(int index, boolean value) Sets the entity flag with indexflag
tovalue
.Entity flag is used to track whether the entity is sneaking, sprinting, invisible, etc.
- Mappings:
Namespace Name Mixin selector official b
Lbfh;b(IZ)V
intermediary method_5729
Lnet/minecraft/class_1297;method_5729(IZ)V
named setFlag
Lnet/minecraft/entity/Entity;setFlag(IZ)V
-
getMaxAir
public int getMaxAir()Returns the maximum amount of air the entity can hold, in ticks.Most entities have the max air of 300 ticks, or 15 seconds.
DolphinEntity
has 4800 ticks or 4 minutes;AxolotlEntity
has 6000 ticks or 5 minutes. Note that this does not include enchantments.- Returns:
- the maximum amount of air the entity can hold, in ticks
- See Also:
- Mappings:
Namespace Name Mixin selector official cd
Lbfh;cd()I
intermediary method_5748
Lnet/minecraft/class_1297;method_5748()I
named getMaxAir
Lnet/minecraft/entity/Entity;getMaxAir()I
-
getAir
public int getAir()Returns the air left for the entity, in ticks.Air is decremented every tick if the entity's eye is submerged in water. If this is
-20
, the air will be reset to0
and the entity takes a drowning damage.- Returns:
- the air left for the entity, in ticks
- See Also:
- API Note:
WaterCreatureEntity
reuses the air to indicate the entity's air breathed when the entity is in water. If the entity is not touching a water, the air decrements, and the entity drowns in the same way as other entities.- Mappings:
Namespace Name Mixin selector official ce
Lbfh;ce()I
intermediary method_5669
Lnet/minecraft/class_1297;method_5669()I
named getAir
Lnet/minecraft/entity/Entity;getAir()I
-
setAir
public void setAir(int air) Sets the air left for the entity in ticks.Air is decremented every tick if the entity's eye is submerged in water. If this is
-20
, the air will be reset to0
and the entity takes a drowning damage.- See Also:
- API Note:
WaterCreatureEntity
reuses the air to indicate the entity's air breathed when the entity is in water. If the entity is not touching a water, the air decrements, and the entity drowns in the same way as other entities.- Mappings:
Namespace Name Mixin selector official j
Lbfh;j(I)V
intermediary method_5855
Lnet/minecraft/class_1297;method_5855(I)V
named setAir
Lnet/minecraft/entity/Entity;setAir(I)V
-
getFrozenTicks
public int getFrozenTicks()Returns how long the entity is freezing, in ticks.If this is equal to or above
getMinFreezeDamageTicks()
, the entity receives freezing damage.- Returns:
- how long the entity is freezing, in ticks
- See Also:
- Mappings:
Namespace Name Mixin selector official cf
Lbfh;cf()I
intermediary method_32312
Lnet/minecraft/class_1297;method_32312()I
named getFrozenTicks
Lnet/minecraft/entity/Entity;getFrozenTicks()I
-
setFrozenTicks
public void setFrozenTicks(int frozenTicks) Sets how long the entity is freezing in ticks.If this is equal to or above
getMinFreezeDamageTicks()
, the entity receives freezing damage.- See Also:
- Mappings:
Namespace Name Mixin selector official k
Lbfh;k(I)V
intermediary method_32317
Lnet/minecraft/class_1297;method_32317(I)V
named setFrozenTicks
Lnet/minecraft/entity/Entity;setFrozenTicks(I)V
-
getFreezingScale
public float getFreezingScale()Returns the current freezing scale.Freezing scale is calculated as
Math.min(1, getFrozenTicks() / getMinFreezeDamageTicks())
.- Returns:
- the current freezing scale
- See Also:
- Mappings:
Namespace Name Mixin selector official cg
Lbfh;cg()F
intermediary method_32313
Lnet/minecraft/class_1297;method_32313()F
named getFreezingScale
Lnet/minecraft/entity/Entity;getFreezingScale()F
-
isFrozen
public boolean isFrozen()Returns whether the entity is frozen.Frozen entities take freezing damage. Entity becomes frozen
getMinFreezeDamageTicks()
ticks after starting to freeze.- Returns:
- whether the entity is frozen
- See Also:
- Mappings:
Namespace Name Mixin selector official ch
Lbfh;ch()Z
intermediary method_32314
Lnet/minecraft/class_1297;method_32314()Z
named isFrozen
Lnet/minecraft/entity/Entity;isFrozen()Z
-
getMinFreezeDamageTicks
public int getMinFreezeDamageTicks()Returns how long it takes for the entity to be completely frozen and receive freezing damage, in ticks.- Returns:
- how long it takes for the entity to be completely frozen and receive freezing damage, in ticks
- See Also:
- Mappings:
Namespace Name Mixin selector official ci
Lbfh;ci()I
intermediary method_32315
Lnet/minecraft/class_1297;method_32315()I
named getMinFreezeDamageTicks
Lnet/minecraft/entity/Entity;getMinFreezeDamageTicks()I
-
onStruckByLightning
Called when the entity is struck by lightning. This sets the entity on fire and deals lightning damage by default; entities that do not take such damage should override this method to do nothing.- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Laif;Lbfw;)V
intermediary method_5800
Lnet/minecraft/class_1297;method_5800(Lnet/minecraft/class_3218;Lnet/minecraft/class_1538;)V
named onStruckByLightning
Lnet/minecraft/entity/Entity;onStruckByLightning(Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/entity/LightningEntity;)V
-
onBubbleColumnSurfaceCollision
public void onBubbleColumnSurfaceCollision(boolean drag) Called when the entity collides with a bubble column with an air above.This applies the bubble column velocity by default.
BoatEntity
uses this to spawn splash particles.- Parameters:
drag
- whether the entity should be dragged downwards- Mappings:
Namespace Name Mixin selector official l
Lbfh;l(Z)V
intermediary method_5700
Lnet/minecraft/class_1297;method_5700(Z)V
named onBubbleColumnSurfaceCollision
Lnet/minecraft/entity/Entity;onBubbleColumnSurfaceCollision(Z)V
-
onBubbleColumnCollision
public void onBubbleColumnCollision(boolean drag) Called when the entity collides with a bubble column without an air above.This applies the bubble column velocity by default.
- Parameters:
drag
- whether the entity should be dragged downwards- Mappings:
Namespace Name Mixin selector official m
Lbfh;m(Z)V
intermediary method_5764
Lnet/minecraft/class_1297;method_5764(Z)V
named onBubbleColumnCollision
Lnet/minecraft/entity/Entity;onBubbleColumnCollision(Z)V
-
onKilledOther
Called when this entity killsother
.- Returns:
- whether the entity died (and not converted to another entity)
- API Note:
ZombieEntity
overrides this to convert the killed villager to a zombie villager.- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Laif;Lbfx;)Z
intermediary method_5874
Lnet/minecraft/class_1297;method_5874(Lnet/minecraft/class_3218;Lnet/minecraft/class_1309;)Z
named onKilledOther
Lnet/minecraft/entity/Entity;onKilledOther(Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/entity/LivingEntity;)Z
-
limitFallDistance
public void limitFallDistance()Called when this entity is fall flying or on a lead.Limits this entity's
fallDistance
if its downward velocity isn't fast enough in order to prevent unwarranted fall damage.- Mappings:
Namespace Name Mixin selector official cj
Lbfh;cj()V
intermediary method_45318
Lnet/minecraft/class_1297;method_45318()V
named limitFallDistance
Lnet/minecraft/entity/Entity;limitFallDistance()V
-
onLanding
public void onLanding()Called when the entity lands on a block.- Mappings:
Namespace Name Mixin selector official n
Lbfh;n()V
intermediary method_38785
Lnet/minecraft/class_1297;method_38785()V
named onLanding
Lnet/minecraft/entity/Entity;onLanding()V
-
pushOutOfBlocks
protected void pushOutOfBlocks(double x, double y, double z) Pushes this entity out of blocks.- Parameters:
x
- the entity's X positiony
- the entity bounding box's center Y positionz
- the entity's Z position- API Note:
- This is used by
ItemEntity
andExperienceOrbEntity
. - Mappings:
Namespace Name Mixin selector official m
Lbfh;m(DDD)V
intermediary method_5632
Lnet/minecraft/class_1297;method_5632(DDD)V
named pushOutOfBlocks
Lnet/minecraft/entity/Entity;pushOutOfBlocks(DDD)V
-
slowMovement
CallsonLanding()
and slows this entity.This means that the entity will avoid taking fall damage.
- API Note:
- This should be called inside
AbstractBlock.onEntityCollision(net.minecraft.block.BlockState, net.minecraft.world.World, net.minecraft.util.math.BlockPos, net.minecraft.entity.Entity)
. This is used by cobwebs, sweet berries, and powder snow. - Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Ldby;Leea;)V
intermediary method_5844
Lnet/minecraft/class_1297;method_5844(Lnet/minecraft/class_2680;Lnet/minecraft/class_243;)V
named slowMovement
Lnet/minecraft/entity/Entity;slowMovement(Lnet/minecraft/block/BlockState;Lnet/minecraft/util/math/Vec3d;)V
-
removeClickEvents
- Mappings:
Namespace Name Mixin selector official c
Lbfh;c(Lsw;)Lsw;
intermediary method_5856
Lnet/minecraft/class_1297;method_5856(Lnet/minecraft/class_2561;)Lnet/minecraft/class_2561;
named removeClickEvents
Lnet/minecraft/entity/Entity;removeClickEvents(Lnet/minecraft/text/Text;)Lnet/minecraft/text/Text;
-
getName
Returns the name of this object.This should return the custom name if it exists, otherwise the default name. This should not have styling applied.
- Specified by:
getName
in interfaceNameable
- Returns:
- the name of this object
- Mappings:
Namespace Name Mixin selector official Y
Lbea;Y()Lsw;
intermediary method_5477
Lnet/minecraft/class_1275;method_5477()Lnet/minecraft/class_2561;
named getName
Lnet/minecraft/util/Nameable;getName()Lnet/minecraft/text/Text;
-
getDefaultName
Returns the default name of the entity.- Returns:
- the default name of the entity
- See Also:
- Mappings:
Namespace Name Mixin selector official ck
Lbfh;ck()Lsw;
intermediary method_23315
Lnet/minecraft/class_1297;method_23315()Lnet/minecraft/class_2561;
named getDefaultName
Lnet/minecraft/entity/Entity;getDefaultName()Lnet/minecraft/text/Text;
-
isPartOf
Returns whether this entity is part ofentity
.This is just an equality check for all entities except the ender dragon part. An ender dragon is composed of several entity parts; each part returns
true
forpart.isPartOf(dragon)
.- Returns:
- whether this entity is part of
entity
- Mappings:
Namespace Name Mixin selector official q
Lbfh;q(Lbfh;)Z
intermediary method_5779
Lnet/minecraft/class_1297;method_5779(Lnet/minecraft/class_1297;)Z
named isPartOf
Lnet/minecraft/entity/Entity;isPartOf(Lnet/minecraft/entity/Entity;)Z
-
getHeadYaw
public float getHeadYaw()Returns the head yaw of the entity.- Returns:
- the head yaw of the entity
- See Also:
- Mappings:
Namespace Name Mixin selector official cl
Lbfh;cl()F
intermediary method_5791
Lnet/minecraft/class_1297;method_5791()F
named getHeadYaw
Lnet/minecraft/entity/Entity;getHeadYaw()F
-
setHeadYaw
public void setHeadYaw(float headYaw) Sets the head yaw of this entity.- See Also:
- Mappings:
Namespace Name Mixin selector official n
Lbfh;n(F)V
intermediary method_5847
Lnet/minecraft/class_1297;method_5847(F)V
named setHeadYaw
Lnet/minecraft/entity/Entity;setHeadYaw(F)V
-
setBodyYaw
public void setBodyYaw(float bodyYaw) Sets the body yaw of this entity.- See Also:
- Mappings:
Namespace Name Mixin selector official o
Lbfh;o(F)V
intermediary method_5636
Lnet/minecraft/class_1297;method_5636(F)V
named setBodyYaw
Lnet/minecraft/entity/Entity;setBodyYaw(F)V
-
isAttackable
public boolean isAttackable()Returns whether the entity can be attacked by players.Note that this is not called for most entities defined in vanilla as unattackable (such as
ItemEntity
andExperienceOrbEntity
) as trying to attack them kicks the player.- Returns:
- whether the entity can be attacked by players
- See Also:
- Mappings:
Namespace Name Mixin selector official cm
Lbfh;cm()Z
intermediary method_5732
Lnet/minecraft/class_1297;method_5732()Z
named isAttackable
Lnet/minecraft/entity/Entity;isAttackable()Z
-
handleAttack
Handles a player attacking the entity. This is called beforedamage(net.minecraft.entity.damage.DamageSource, float)
and can be used to restrict players from attacking the entity by returningtrue
.- Returns:
- whether to stop handling the attack
- See Also:
- API Note:
- For example,
ArmorStandEntity
checks whether the player can modify blocks at the entity's position. - Mappings:
Namespace Name Mixin selector official r
Lbfh;r(Lbfh;)Z
intermediary method_5698
Lnet/minecraft/class_1297;method_5698(Lnet/minecraft/class_1297;)Z
named handleAttack
Lnet/minecraft/entity/Entity;handleAttack(Lnet/minecraft/entity/Entity;)Z
-
toString
-
isInvulnerableTo
Returns whether the entity is invulnerable todamageSource
.This can be overridden to make the entity invulnerable to some damages, but
super.isInvulnerableTo()
should be called in this case.- Returns:
- whether the entity is invulnerable to
damageSource
- See Also:
- Implementation Note:
- Entity is invulnerable to all damages if it is removed, and is invulnerable to all damages except
DamageTypes.OUT_OF_WORLD
or damages from creative mode players if the entity is invulnerable. This also checksisFireImmune()
. - Mappings:
Namespace Name Mixin selector official b
Lbfh;b(Lbem;)Z
intermediary method_5679
Lnet/minecraft/class_1297;method_5679(Lnet/minecraft/class_1282;)Z
named isInvulnerableTo
Lnet/minecraft/entity/Entity;isInvulnerableTo(Lnet/minecraft/entity/damage/DamageSource;)Z
-
isInvulnerable
public boolean isInvulnerable()Returns whether the entity is invulnerable.This is saved on the
Invulnerable
NBT key.- Returns:
- whether the entity is invulnerable
- See Also:
- Implementation Note:
- Invulnerable entities are immune from all damages except
DamageTypes.OUT_OF_WORLD
and damages by creative mode players by default. - Mappings:
Namespace Name Mixin selector official cn
Lbfh;cn()Z
intermediary method_5655
Lnet/minecraft/class_1297;method_5655()Z
named isInvulnerable
Lnet/minecraft/entity/Entity;isInvulnerable()Z
-
setInvulnerable
public void setInvulnerable(boolean invulnerable) Sets whether the entity is invulnerable.This is saved on the
Invulnerable
NBT key.- See Also:
- Implementation Note:
- Invulnerable entities are immune from all damages except
DamageTypes.OUT_OF_WORLD
and damages by creative mode players by default. - Mappings:
Namespace Name Mixin selector official n
Lbfh;n(Z)V
intermediary method_5684
Lnet/minecraft/class_1297;method_5684(Z)V
named setInvulnerable
Lnet/minecraft/entity/Entity;setInvulnerable(Z)V
-
copyPositionAndRotation
Sets the entity's position and rotation the same asentity
.- See Also:
- Mappings:
Namespace Name Mixin selector official s
Lbfh;s(Lbfh;)V
intermediary method_5719
Lnet/minecraft/class_1297;method_5719(Lnet/minecraft/class_1297;)V
named copyPositionAndRotation
Lnet/minecraft/entity/Entity;copyPositionAndRotation(Lnet/minecraft/entity/Entity;)V
-
copyFrom
Copies serializable data and nether portal data fromoriginal
.- See Also:
- Mappings:
Namespace Name Mixin selector official t
Lbfh;t(Lbfh;)V
intermediary method_5878
Lnet/minecraft/class_1297;method_5878(Lnet/minecraft/class_1297;)V
named copyFrom
Lnet/minecraft/entity/Entity;copyFrom(Lnet/minecraft/entity/Entity;)V
-
moveToWorld
Moves this entity to another world.Note all entities except server player entities are completely recreated at the destination.
- Returns:
- the entity in the other world
- Mappings:
Namespace Name Mixin selector official b
Lbfh;b(Laif;)Lbfh;
intermediary method_5731
Lnet/minecraft/class_1297;method_5731(Lnet/minecraft/class_3218;)Lnet/minecraft/class_1297;
named moveToWorld
Lnet/minecraft/entity/Entity;moveToWorld(Lnet/minecraft/server/world/ServerWorld;)Lnet/minecraft/entity/Entity;
-
removeFromDimension
protected void removeFromDimension()Removes this entity from the current dimension.This calls
setRemoved(net.minecraft.entity.Entity.RemovalReason)
by default. Subclasses can add other logics, such as setting the stack count of equipped stacks to zero.- See Also:
- Mappings:
Namespace Name Mixin selector official co
Lbfh;co()V
intermediary method_30076
Lnet/minecraft/class_1297;method_30076()V
named removeFromDimension
Lnet/minecraft/entity/Entity;removeFromDimension()V
-
getTeleportTarget
Returns aTeleportTarget
for the entity based on its current and destination worlds, plus any nether portals that may be present.- Returns:
- a
TeleportTarget
for the entity based on its current and destination worlds, plus any nether portals that may be present - Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Laif;)Ldxy;
intermediary method_30329
Lnet/minecraft/class_1297;method_30329(Lnet/minecraft/class_3218;)Lnet/minecraft/class_5454;
named getTeleportTarget
Lnet/minecraft/entity/Entity;getTeleportTarget(Lnet/minecraft/server/world/ServerWorld;)Lnet/minecraft/world/TeleportTarget;
-
positionInPortal
Returns the entity's position in the portal after teleportation.- Returns:
- the entity's position in the portal after teleportation
- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lha$a;Ll$a;)Leea;
intermediary method_30633
Lnet/minecraft/class_1297;method_30633(Lnet/minecraft/class_2350$class_2351;Lnet/minecraft/class_5459$class_5460;)Lnet/minecraft/class_243;
named positionInPortal
Lnet/minecraft/entity/Entity;positionInPortal(Lnet/minecraft/util/math/Direction$Axis;Lnet/minecraft/world/BlockLocating$Rectangle;)Lnet/minecraft/util/math/Vec3d;
-
getPortalRect
protected Optional<BlockLocating.Rectangle> getPortalRect(ServerWorld destWorld, BlockPos destPos, boolean destIsNether, WorldBorder worldBorder) Returns the portal rect atdestPos
.- Returns:
- the portal rect at
destPos
- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Laif;Lgu;ZLddp;)Ljava/util/Optional;
intermediary method_30330
Lnet/minecraft/class_1297;method_30330(Lnet/minecraft/class_3218;Lnet/minecraft/class_2338;ZLnet/minecraft/class_2784;)Ljava/util/Optional;
named getPortalRect
Lnet/minecraft/entity/Entity;getPortalRect(Lnet/minecraft/server/world/ServerWorld;Lnet/minecraft/util/math/BlockPos;ZLnet/minecraft/world/border/WorldBorder;)Ljava/util/Optional;
-
canUsePortals
public boolean canUsePortals()Returns whether the entity can use nether portals and end portals.EnderDragonEntity
,WitherEntity
, andFishingBobberEntity
cannot use portals.- Returns:
- whether the entity can use nether portals and end portals
- Mappings:
Namespace Name Mixin selector official cp
Lbfh;cp()Z
intermediary method_5822
Lnet/minecraft/class_1297;method_5822()Z
named canUsePortals
Lnet/minecraft/entity/Entity;canUsePortals()Z
-
getEffectiveExplosionResistance
public float getEffectiveExplosionResistance(Explosion explosion, BlockView world, BlockPos pos, BlockState blockState, FluidState fluidState, float max) Returns the blast resistance ofblockState
for an explosion caused by this entity.- Returns:
- the blast resistance of
blockState
for an explosion caused by this entity - See Also:
- API Note:
WitherSkullEntity
overrides this to implement the "charged/blue skull" behavior.- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lcmc;Lclq;Lgu;Ldby;Ldxb;F)F
intermediary method_5774
Lnet/minecraft/class_1297;method_5774(Lnet/minecraft/class_1927;Lnet/minecraft/class_1922;Lnet/minecraft/class_2338;Lnet/minecraft/class_2680;Lnet/minecraft/class_3610;F)F
named getEffectiveExplosionResistance
Lnet/minecraft/entity/Entity;getEffectiveExplosionResistance(Lnet/minecraft/world/explosion/Explosion;Lnet/minecraft/world/BlockView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;Lnet/minecraft/fluid/FluidState;F)F
-
canExplosionDestroyBlock
public boolean canExplosionDestroyBlock(Explosion explosion, BlockView world, BlockPos pos, BlockState state, float explosionPower) Returns whetherexplosion
from this entity can destroystate
.- Returns:
- whether
explosion
from this entity can destroystate
- See Also:
- API Note:
- This is used by
TntMinecartEntity
to prevent the rail from being destroyed by explosion. - Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lcmc;Lclq;Lgu;Ldby;F)Z
intermediary method_5853
Lnet/minecraft/class_1297;method_5853(Lnet/minecraft/class_1927;Lnet/minecraft/class_1922;Lnet/minecraft/class_2338;Lnet/minecraft/class_2680;F)Z
named canExplosionDestroyBlock
Lnet/minecraft/entity/Entity;canExplosionDestroyBlock(Lnet/minecraft/world/explosion/Explosion;Lnet/minecraft/world/BlockView;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;F)Z
-
getSafeFallDistance
public int getSafeFallDistance()Returns the maximum height of a fall the entity takes during pathfinding.- Returns:
- the maximum height of a fall the entity takes during pathfinding
- Mappings:
Namespace Name Mixin selector official cq
Lbfh;cq()I
intermediary method_5850
Lnet/minecraft/class_1297;method_5850()I
named getSafeFallDistance
Lnet/minecraft/entity/Entity;getSafeFallDistance()I
-
canAvoidTraps
public boolean canAvoidTraps()Returns whether the entity cannot trigger pressure plates or tripwires.BatEntity
is the only entity in vanilla that can avoid traps.- Returns:
- whether the entity cannot trigger pressure plates or tripwires
- Mappings:
Namespace Name Mixin selector official cr
Lbfh;cr()Z
intermediary method_5696
Lnet/minecraft/class_1297;method_5696()Z
named canAvoidTraps
Lnet/minecraft/entity/Entity;canAvoidTraps()Z
-
populateCrashReport
Populates the crash report section to include the entity's information.- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lp;)V
intermediary method_5819
Lnet/minecraft/class_1297;method_5819(Lnet/minecraft/class_129;)V
named populateCrashReport
Lnet/minecraft/entity/Entity;populateCrashReport(Lnet/minecraft/util/crash/CrashReportSection;)V
-
doesRenderOnFire
public boolean doesRenderOnFire()Returns whether an entity should render as being on fire.This returns whether the entity is on fire and is not a spectator.
- Returns:
- whether an entity should render as being on fire
- See Also:
- Mappings:
Namespace Name Mixin selector official cs
Lbfh;cs()Z
intermediary method_5862
Lnet/minecraft/class_1297;method_5862()Z
named doesRenderOnFire
Lnet/minecraft/entity/Entity;doesRenderOnFire()Z
-
setUuid
Sets the UUID of the entity touuid
.This should not be called after spawning the entity.
- See Also:
- Mappings:
Namespace Name Mixin selector official a_
Lbfh;a_(Ljava/util/UUID;)V
intermediary method_5826
Lnet/minecraft/class_1297;method_5826(Ljava/util/UUID;)V
named setUuid
Lnet/minecraft/entity/Entity;setUuid(Ljava/util/UUID;)V
-
getUuid
- Specified by:
getUuid
in interfaceEntityLike
- Mappings:
Namespace Name Mixin selector official ct
Ldfp;ct()Ljava/util/UUID;
intermediary method_5667
Lnet/minecraft/class_5568;method_5667()Ljava/util/UUID;
named getUuid
Lnet/minecraft/world/entity/EntityLike;getUuid()Ljava/util/UUID;
-
getUuidAsString
Returns the entity's UUID as string.This is a shortcut of
getUuid().toString()
.- Returns:
- the entity's UUID as string
- See Also:
- Mappings:
Namespace Name Mixin selector official cu
Lbfh;cu()Ljava/lang/String;
intermediary method_5845
Lnet/minecraft/class_1297;method_5845()Ljava/lang/String;
named getUuidAsString
Lnet/minecraft/entity/Entity;getUuidAsString()Ljava/lang/String;
-
getEntityName
Returns the name uniquely identifying the entity.Unlike
getName()
, this is guaranteed to be unique. This is the UUID for all entities except players (which use the player's username). This is mostly used when passing the player name tonet.minecraft.scoreboard.Scoreboard
methods.- Returns:
- the name uniquely identifying the entity
- See Also:
- Mappings:
Namespace Name Mixin selector official cv
Lbfh;cv()Ljava/lang/String;
intermediary method_5820
Lnet/minecraft/class_1297;method_5820()Ljava/lang/String;
named getEntityName
Lnet/minecraft/entity/Entity;getEntityName()Ljava/lang/String;
-
isPushedByFluids
public boolean isPushedByFluids()Returns whether the entity is pushed by fluids.- Returns:
- whether the entity is pushed by fluids
- API Note:
- Aquatic mobs should override this to return
false
. Players are not pushed by fluids if they can fly (e.g. because of game mode). - Mappings:
Namespace Name Mixin selector official cw
Lbfh;cw()Z
intermediary method_5675
Lnet/minecraft/class_1297;method_5675()Z
named isPushedByFluids
Lnet/minecraft/entity/Entity;isPushedByFluids()Z
-
getRenderDistanceMultiplier
public static double getRenderDistanceMultiplier()Returns the entity render distance multiplier.This is only usable on the client.
- Returns:
- the entity render distance multiplier
- Mappings:
Namespace Name Mixin selector official cx
Lbfh;cx()D
intermediary method_5824
Lnet/minecraft/class_1297;method_5824()D
named getRenderDistanceMultiplier
Lnet/minecraft/entity/Entity;getRenderDistanceMultiplier()D
-
setRenderDistanceMultiplier
public static void setRenderDistanceMultiplier(double value) Sets the render distance multiplier.This is only used on the client.
- Mappings:
Namespace Name Mixin selector official b
Lbfh;b(D)V
intermediary method_5840
Lnet/minecraft/class_1297;method_5840(D)V
named setRenderDistanceMultiplier
Lnet/minecraft/entity/Entity;setRenderDistanceMultiplier(D)V
-
getDisplayName
Returns the display name of this object.By default, this returns the result of
Nameable.getName()
. The return value can have styling applied.- Specified by:
getDisplayName
in interfaceNameable
- Returns:
- the display name of this object
- Mappings:
Namespace Name Mixin selector official G_
Lbea;G_()Lsw;
intermediary method_5476
Lnet/minecraft/class_1275;method_5476()Lnet/minecraft/class_2561;
named getDisplayName
Lnet/minecraft/util/Nameable;getDisplayName()Lnet/minecraft/text/Text;
-
setCustomName
Sets the custom name of the entity toname
(ornull
to remove the custom name).- Mappings:
Namespace Name Mixin selector official b
Lbfh;b(Lsw;)V
intermediary method_5665
Lnet/minecraft/class_1297;method_5665(Lnet/minecraft/class_2561;)V
named setCustomName
Lnet/minecraft/entity/Entity;setCustomName(Lnet/minecraft/text/Text;)V
-
getCustomName
Returns the custom name of this object, ornull
if there is none.- Specified by:
getCustomName
in interfaceNameable
- Returns:
- the custom name of this object, or
null
if there is none - Mappings:
Namespace Name Mixin selector official aa
Lbea;aa()Lsw;
intermediary method_5797
Lnet/minecraft/class_1275;method_5797()Lnet/minecraft/class_2561;
named getCustomName
Lnet/minecraft/util/Nameable;getCustomName()Lnet/minecraft/text/Text;
-
hasCustomName
public boolean hasCustomName()Returns whether this object has a custom name.- Specified by:
hasCustomName
in interfaceNameable
- Returns:
- whether this object has a custom name
- Mappings:
Namespace Name Mixin selector official Z
Lbea;Z()Z
intermediary method_16914
Lnet/minecraft/class_1275;method_16914()Z
named hasCustomName
Lnet/minecraft/util/Nameable;hasCustomName()Z
-
setCustomNameVisible
public void setCustomNameVisible(boolean visible) Sets whether the custom name should be shown.This is stored on
CustomNameVisible
NBT key.- See Also:
- Mappings:
Namespace Name Mixin selector official o
Lbfh;o(Z)V
intermediary method_5880
Lnet/minecraft/class_1297;method_5880(Z)V
named setCustomNameVisible
Lnet/minecraft/entity/Entity;setCustomNameVisible(Z)V
-
isCustomNameVisible
public boolean isCustomNameVisible()Returns whether the custom name should be shown.This is stored on
CustomNameVisible
NBT key.- Returns:
- whether the custom name should be shown
- See Also:
- Mappings:
Namespace Name Mixin selector official cy
Lbfh;cy()Z
intermediary method_5807
Lnet/minecraft/class_1297;method_5807()Z
named isCustomNameVisible
Lnet/minecraft/entity/Entity;isCustomNameVisible()Z
-
teleport
public final void teleport(double destX, double destY, double destZ) Teleports the entity to the given position, loading the chunk withChunkTicketType.POST_TELEPORT
.- See Also:
- Mappings:
Namespace Name Mixin selector official n
Lbfh;n(DDD)V
intermediary method_20620
Lnet/minecraft/class_1297;method_20620(DDD)V
named teleport
Lnet/minecraft/entity/Entity;teleport(DDD)V
-
teleport
public boolean teleport(ServerWorld world, double destX, double destY, double destZ, Set<PositionFlag> flags, float yaw, float pitch) Teleports the entity to the given position. Ifworld
differs from the current world, it copies the entity and discards the current one.- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Laif;DDDLjava/util/Set;FF)Z
intermediary method_48105
Lnet/minecraft/class_1297;method_48105(Lnet/minecraft/class_3218;DDDLjava/util/Set;FF)Z
named teleport
Lnet/minecraft/entity/Entity;teleport(Lnet/minecraft/server/world/ServerWorld;DDDLjava/util/Set;FF)Z
-
requestTeleportAndDismount
public void requestTeleportAndDismount(double destX, double destY, double destZ) Requests the entity to teleport to the given position. If the entity is a player, this also dismounts the player.- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(DDD)V
intermediary method_33567
Lnet/minecraft/class_1297;method_33567(DDD)V
named requestTeleportAndDismount
Lnet/minecraft/entity/Entity;requestTeleportAndDismount(DDD)V
-
requestTeleport
public void requestTeleport(double destX, double destY, double destZ) Requests the entity to teleport to the given position.For players, this sends the teleport packet. For other entities, this just sets the position of the entity and its passengers.
- See Also:
- Mappings:
Namespace Name Mixin selector official b
Lbfh;b(DDD)V
intermediary method_5859
Lnet/minecraft/class_1297;method_5859(DDD)V
named requestTeleport
Lnet/minecraft/entity/Entity;requestTeleport(DDD)V
-
teleportPassengers
private void teleportPassengers()- Mappings:
Namespace Name Mixin selector official r
Lbfh;r()V
intermediary method_49792
Lnet/minecraft/class_1297;method_49792()V
named teleportPassengers
Lnet/minecraft/entity/Entity;teleportPassengers()V
-
requestTeleportOffset
public void requestTeleportOffset(double offsetX, double offsetY, double offsetZ) Requests the entity to teleport to the current position offset by the given amount.For players, this sends the teleport packet. For other entities, this just sets the position of the entity and its passengers.
- See Also:
- Mappings:
Namespace Name Mixin selector official c
Lbfh;c(DDD)V
intermediary method_45166
Lnet/minecraft/class_1297;method_45166(DDD)V
named requestTeleportOffset
Lnet/minecraft/entity/Entity;requestTeleportOffset(DDD)V
-
shouldRenderName
public boolean shouldRenderName()Returns whether to render the name of the entity.This returns
true
for players andisCustomNameVisible()
for other entities.- Returns:
- whether to render the name of the entity
- See Also:
- Mappings:
Namespace Name Mixin selector official cz
Lbfh;cz()Z
intermediary method_5733
Lnet/minecraft/class_1297;method_5733()Z
named shouldRenderName
Lnet/minecraft/entity/Entity;shouldRenderName()Z
-
onDataTrackerUpdate
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Ljava/util/List;)V
intermediary method_48850
Lnet/minecraft/class_1297;method_48850(Ljava/util/List;)V
named onDataTrackerUpdate
Lnet/minecraft/entity/Entity;onDataTrackerUpdate(Ljava/util/List;)V
-
onTrackedDataSet
Called on the client when the tracked data is set.This can be overridden to refresh other fields when the tracked data is set or changed.
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Laby;)V
intermediary method_5674
Lnet/minecraft/class_1297;method_5674(Lnet/minecraft/class_2940;)V
named onTrackedDataSet
Lnet/minecraft/entity/Entity;onTrackedDataSet(Lnet/minecraft/entity/data/TrackedData;)V
-
reinitDimensions
Deprecated.- Mappings:
Namespace Name Mixin selector official cA
Lbfh;cA()V
intermediary method_46396
Lnet/minecraft/class_1297;method_46396()V
named reinitDimensions
Lnet/minecraft/entity/Entity;reinitDimensions()V
-
calculateDimensions
public void calculateDimensions()Calculates and sets the dimension (bounding box) of the entity and refreshes its position.- Mappings:
Namespace Name Mixin selector official d_
Lbfh;d_()V
intermediary method_18382
Lnet/minecraft/class_1297;method_18382()V
named calculateDimensions
Lnet/minecraft/entity/Entity;calculateDimensions()V
-
getHorizontalFacing
- Mappings:
Namespace Name Mixin selector official cB
Lbfh;cB()Lha;
intermediary method_5735
Lnet/minecraft/class_1297;method_5735()Lnet/minecraft/class_2350;
named getHorizontalFacing
Lnet/minecraft/entity/Entity;getHorizontalFacing()Lnet/minecraft/util/math/Direction;
-
getMovementDirection
- Mappings:
Namespace Name Mixin selector official cC
Lbfh;cC()Lha;
intermediary method_5755
Lnet/minecraft/class_1297;method_5755()Lnet/minecraft/class_2350;
named getMovementDirection
Lnet/minecraft/entity/Entity;getMovementDirection()Lnet/minecraft/util/math/Direction;
-
getHoverEvent
Returns the hover event referencing this entity.- Returns:
- the hover event referencing this entity
- Mappings:
Namespace Name Mixin selector official cD
Lbfh;cD()Ltb;
intermediary method_5769
Lnet/minecraft/class_1297;method_5769()Lnet/minecraft/class_2568;
named getHoverEvent
Lnet/minecraft/entity/Entity;getHoverEvent()Lnet/minecraft/text/HoverEvent;
-
canBeSpectated
Returns whetherspectator
can spectate this entity.Spectator players (other than themselves) cannot be spectated.
- Returns:
- whether
spectator
can spectate this entity - Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Laig;)Z
intermediary method_5680
Lnet/minecraft/class_1297;method_5680(Lnet/minecraft/class_3222;)Z
named canBeSpectated
Lnet/minecraft/entity/Entity;canBeSpectated(Lnet/minecraft/server/network/ServerPlayerEntity;)Z
-
getBoundingBox
- Specified by:
getBoundingBox
in interfaceEntityLike
- Mappings:
Namespace Name Mixin selector official cE
Ldfp;cE()Ledv;
intermediary method_5829
Lnet/minecraft/class_5568;method_5829()Lnet/minecraft/class_238;
named getBoundingBox
Lnet/minecraft/world/entity/EntityLike;getBoundingBox()Lnet/minecraft/util/math/Box;
-
getVisibilityBoundingBox
- Mappings:
Namespace Name Mixin selector official j_
Lbfh;j_()Ledv;
intermediary method_5830
Lnet/minecraft/class_1297;method_5830()Lnet/minecraft/class_238;
named getVisibilityBoundingBox
Lnet/minecraft/entity/Entity;getVisibilityBoundingBox()Lnet/minecraft/util/math/Box;
-
calculateBoundsForPose
- Mappings:
Namespace Name Mixin selector official e
Lbfh;e(Lbgj;)Ledv;
intermediary method_20343
Lnet/minecraft/class_1297;method_20343(Lnet/minecraft/class_4050;)Lnet/minecraft/class_238;
named calculateBoundsForPose
Lnet/minecraft/entity/Entity;calculateBoundsForPose(Lnet/minecraft/entity/EntityPose;)Lnet/minecraft/util/math/Box;
-
setBoundingBox
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Ledv;)V
intermediary method_5857
Lnet/minecraft/class_1297;method_5857(Lnet/minecraft/class_238;)V
named setBoundingBox
Lnet/minecraft/entity/Entity;setBoundingBox(Lnet/minecraft/util/math/Box;)V
-
getEyeHeight
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lbgj;Lbfi;)F
intermediary method_18378
Lnet/minecraft/class_1297;method_18378(Lnet/minecraft/class_4050;Lnet/minecraft/class_4048;)F
named getEyeHeight
Lnet/minecraft/entity/Entity;getEyeHeight(Lnet/minecraft/entity/EntityPose;Lnet/minecraft/entity/EntityDimensions;)F
-
getEyeHeight
Returns the eye height forpose
.- Returns:
- the eye height for
pose
- Mappings:
Namespace Name Mixin selector official f
Lbfh;f(Lbgj;)F
intermediary method_18381
Lnet/minecraft/class_1297;method_18381(Lnet/minecraft/class_4050;)F
named getEyeHeight
Lnet/minecraft/entity/Entity;getEyeHeight(Lnet/minecraft/entity/EntityPose;)F
-
getStandingEyeHeight
public final float getStandingEyeHeight()Returns the standing eye height.This is used for calculating the leash offset.
- Returns:
- the standing eye height
- See Also:
- Mappings:
Namespace Name Mixin selector official cF
Lbfh;cF()F
intermediary method_5751
Lnet/minecraft/class_1297;method_5751()F
named getStandingEyeHeight
Lnet/minecraft/entity/Entity;getStandingEyeHeight()F
-
getLeashOffset
- Mappings:
Namespace Name Mixin selector official p
Lbfh;p(F)Leea;
intermediary method_45321
Lnet/minecraft/class_1297;method_45321(F)Lnet/minecraft/class_243;
named getLeashOffset
Lnet/minecraft/entity/Entity;getLeashOffset(F)Lnet/minecraft/util/math/Vec3d;
-
getLeashOffset
Returns the offset from the entity's position where the leash is attached to.This is different from
getLeashPos(float)
; this method is called on the entity which a leash is attached to.- Returns:
- the offset from the entity's position where the leash is attached to
- See Also:
- Mappings:
Namespace Name Mixin selector official cG
Lbfh;cG()Leea;
intermediary method_29919
Lnet/minecraft/class_1297;method_29919()Lnet/minecraft/class_243;
named getLeashOffset
Lnet/minecraft/entity/Entity;getLeashOffset()Lnet/minecraft/util/math/Vec3d;
-
getStackReference
Obtains a stack reference to be modified. Used by commands like/loot
or/item
.- Parameters:
mappedIndex
- the mapped index as given by the item slot argument- See Also:
- Mappings:
Namespace Name Mixin selector official a_
Lbfh;a_(I)Lbgq;
intermediary method_32318
Lnet/minecraft/class_1297;method_32318(I)Lnet/minecraft/class_5630;
named getStackReference
Lnet/minecraft/entity/Entity;getStackReference(I)Lnet/minecraft/inventory/StackReference;
-
sendMessage
Sends a system message.- Specified by:
sendMessage
in interfaceCommandOutput
- Mappings:
Namespace Name Mixin selector official a
Ldr;a(Lsw;)V
intermediary method_43496
Lnet/minecraft/class_2165;method_43496(Lnet/minecraft/class_2561;)V
named sendMessage
Lnet/minecraft/server/command/CommandOutput;sendMessage(Lnet/minecraft/text/Text;)V
-
getEntityWorld
- Mappings:
Namespace Name Mixin selector official cH
Lbfh;cH()Lcmk;
intermediary method_5770
Lnet/minecraft/class_1297;method_5770()Lnet/minecraft/class_1937;
named getEntityWorld
Lnet/minecraft/entity/Entity;getEntityWorld()Lnet/minecraft/world/World;
-
getServer
Returns the server the entity is in, ornull
if called on the client side.- Returns:
- the server the entity is in, or
null
if called on the client side - Mappings:
Namespace Name Mixin selector official cI
Lbfh;cI()Lnet/minecraft/server/MinecraftServer;
intermediary method_5682
Lnet/minecraft/class_1297;method_5682()Lnet/minecraft/server/MinecraftServer;
named getServer
Lnet/minecraft/entity/Entity;getServer()Lnet/minecraft/server/MinecraftServer;
-
interactAt
Called when the player interacts with the entity at the specific position.This should not be used in most cases;
interact(net.minecraft.entity.player.PlayerEntity, net.minecraft.util.Hand)
should be used. This should be used if the interaction's result depends on which part of the entity was interacted at.- Parameters:
hitPos
- the interaction's position offset from the entity's position- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lbym;Leea;Lbdv;)Lbdw;
intermediary method_5664
Lnet/minecraft/class_1297;method_5664(Lnet/minecraft/class_1657;Lnet/minecraft/class_243;Lnet/minecraft/class_1268;)Lnet/minecraft/class_1269;
named interactAt
Lnet/minecraft/entity/Entity;interactAt(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/math/Vec3d;Lnet/minecraft/util/Hand;)Lnet/minecraft/util/ActionResult;
-
isImmuneToExplosion
public boolean isImmuneToExplosion()Returns whether the entity is immune from explosion knockback and damage.Invisible
ArmorStandEntity
and emerging or diggingWardenEntity
are immune from explosions.- Returns:
- whether the entity is immune from explosion knockback and damage
- Mappings:
Namespace Name Mixin selector official cJ
Lbfh;cJ()Z
intermediary method_5659
Lnet/minecraft/class_1297;method_5659()Z
named isImmuneToExplosion
Lnet/minecraft/entity/Entity;isImmuneToExplosion()Z
-
applyDamageEffects
Applies damage effects toattacker
ortarget
.Called when
attacker
damagestarget
.Used to apply damage effects based on enchantments, such as Thorns attacker damage or slowness from Bane of Arthropods.
- Parameters:
attacker
- the attacker; usually this entity, but may be a projectile's owner entity- Implementation Note:
- Although this method is non-static,
this
keyword is not used anywhere in this method. - Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lbfx;Lbfh;)V
intermediary method_5723
Lnet/minecraft/class_1297;method_5723(Lnet/minecraft/class_1309;Lnet/minecraft/class_1297;)V
named applyDamageEffects
Lnet/minecraft/entity/Entity;applyDamageEffects(Lnet/minecraft/entity/LivingEntity;Lnet/minecraft/entity/Entity;)V
-
onStartedTrackingBy
Called whenplayer
starts tracking this entity.Entities with boss bars like
WitherEntity
should override this to add the player to the boss bar.- Mappings:
Namespace Name Mixin selector official c
Lbfh;c(Laig;)V
intermediary method_5837
Lnet/minecraft/class_1297;method_5837(Lnet/minecraft/class_3222;)V
named onStartedTrackingBy
Lnet/minecraft/entity/Entity;onStartedTrackingBy(Lnet/minecraft/server/network/ServerPlayerEntity;)V
-
onStoppedTrackingBy
Called whenplayer
stops tracking this entity.Entities with boss bars like
WitherEntity
should override this to remove the player from the boss bar.- Mappings:
Namespace Name Mixin selector official d
Lbfh;d(Laig;)V
intermediary method_5742
Lnet/minecraft/class_1297;method_5742(Lnet/minecraft/class_3222;)V
named onStoppedTrackingBy
Lnet/minecraft/entity/Entity;onStoppedTrackingBy(Lnet/minecraft/server/network/ServerPlayerEntity;)V
-
applyRotation
Appliesrotation
to the entity's yaw.- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lcvw;)F
intermediary method_5832
Lnet/minecraft/class_1297;method_5832(Lnet/minecraft/class_2470;)F
named applyRotation
Lnet/minecraft/entity/Entity;applyRotation(Lnet/minecraft/util/BlockRotation;)F
-
applyMirror
Appliesmirror
to the entity's yaw.- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lcuf;)F
intermediary method_5763
Lnet/minecraft/class_1297;method_5763(Lnet/minecraft/class_2415;)F
named applyMirror
Lnet/minecraft/entity/Entity;applyMirror(Lnet/minecraft/util/BlockMirror;)F
-
entityDataRequiresOperator
public boolean entityDataRequiresOperator()Returns whetherEntityType.loadFromEntityNbt(net.minecraft.world.World, net.minecraft.entity.player.PlayerEntity, net.minecraft.entity.Entity, net.minecraft.nbt.NbtCompound)
should reject entity NBTs unless called by an operator.This is
false
by default, and should be overridden if the entity provides functionality that is usually restricted to operators (such asCommandBlockMinecartEntity
).- Returns:
- whether
EntityType.loadFromEntityNbt(net.minecraft.world.World, net.minecraft.entity.player.PlayerEntity, net.minecraft.entity.Entity, net.minecraft.nbt.NbtCompound)
should reject entity NBTs unless called by an operator - Mappings:
Namespace Name Mixin selector official cK
Lbfh;cK()Z
intermediary method_5833
Lnet/minecraft/class_1297;method_5833()Z
named entityDataRequiresOperator
Lnet/minecraft/entity/Entity;entityDataRequiresOperator()Z
-
getControllingPassenger
Returns the passenger in control of this entity, ornull
if there is none.Rideable entities should override this to return the entity. This is usually
#getFirstPassenger
.- Returns:
- the passenger in control of this entity, or
null
if there is none - See Also:
- Mappings:
Namespace Name Mixin selector official cL
Lbfh;cL()Lbfx;
intermediary method_5642
Lnet/minecraft/class_1297;method_5642()Lnet/minecraft/class_1309;
named getControllingPassenger
Lnet/minecraft/entity/Entity;getControllingPassenger()Lnet/minecraft/entity/LivingEntity;
-
hasControllingPassenger
public final boolean hasControllingPassenger()Returns whether there is a passenger in control of this entity.- Returns:
- whether there is a passenger in control of this entity
- See Also:
- Mappings:
Namespace Name Mixin selector official cM
Lbfh;cM()Z
intermediary method_42148
Lnet/minecraft/class_1297;method_42148()Z
named hasControllingPassenger
Lnet/minecraft/entity/Entity;hasControllingPassenger()Z
-
getPassengerList
Returns the list of passengers of this entity.- Returns:
- the list of passengers of this entity
- See Also:
- Mappings:
Namespace Name Mixin selector official cN
Lbfh;cN()Ljava/util/List;
intermediary method_5685
Lnet/minecraft/class_1297;method_5685()Ljava/util/List;
named getPassengerList
Lnet/minecraft/entity/Entity;getPassengerList()Ljava/util/List;
-
getFirstPassenger
Returns the first passenger of the passenger list, ornull
if there is no passengers.Such passenger is usually also the the controlling passenger.
- Returns:
- the first passenger of the passenger list,
or
null
if there is no passengers - See Also:
- Mappings:
Namespace Name Mixin selector official cO
Lbfh;cO()Lbfh;
intermediary method_31483
Lnet/minecraft/class_1297;method_31483()Lnet/minecraft/class_1297;
named getFirstPassenger
Lnet/minecraft/entity/Entity;getFirstPassenger()Lnet/minecraft/entity/Entity;
-
hasPassenger
Returns whetherpassenger
is a passenger of this entity.- Returns:
- whether
passenger
is a passenger of this entity - See Also:
- Mappings:
Namespace Name Mixin selector official u
Lbfh;u(Lbfh;)Z
intermediary method_5626
Lnet/minecraft/class_1297;method_5626(Lnet/minecraft/class_1297;)Z
named hasPassenger
Lnet/minecraft/entity/Entity;hasPassenger(Lnet/minecraft/entity/Entity;)Z
-
hasPassenger
Returns whether there is a passenger of this entity matchingpredicate
.- Returns:
- whether there is a passenger of this entity matching
predicate
- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Ljava/util/function/Predicate;)Z
intermediary method_5703
Lnet/minecraft/class_1297;method_5703(Ljava/util/function/Predicate;)Z
named hasPassenger
Lnet/minecraft/entity/Entity;hasPassenger(Ljava/util/function/Predicate;)Z
-
streamIntoPassengers
Returns a recursive stream of all passengers.This is recursive; for example, if a boat has 2 pigs, ridden by player A and player B, then
boat.streamIntoPassengers()
would return a stream of the first pig, player A, the second pig, and player B. This does not stream the vehicle itself.- Returns:
- a recursive stream of all passengers
- See Also:
- Mappings:
Namespace Name Mixin selector official s
Lbfh;s()Ljava/util/stream/Stream;
intermediary method_31484
Lnet/minecraft/class_1297;method_31484()Ljava/util/stream/Stream;
named streamIntoPassengers
Lnet/minecraft/entity/Entity;streamIntoPassengers()Ljava/util/stream/Stream;
-
streamSelfAndPassengers
Returns a stream consisting of this entity and its passengers recursively. Each entity will appear before any of its passengers.This may be less costly than
EntityLike.streamPassengersAndSelf()
if the stream's iteration would terminates fast, such as finding an arbitrary match of entity in the passengers tree.- Specified by:
streamSelfAndPassengers
in interfaceEntityLike
- See Also:
- Mappings:
Namespace Name Mixin selector official cP
Ldfp;cP()Ljava/util/stream/Stream;
intermediary method_24204
Lnet/minecraft/class_5568;method_24204()Ljava/util/stream/Stream;
named streamSelfAndPassengers
Lnet/minecraft/world/entity/EntityLike;streamSelfAndPassengers()Ljava/util/stream/Stream;
-
streamPassengersAndSelf
Returns a stream consisting of this entity and its passengers in which this entity's passengers are iterated before this entity.Moreover, this stream guarantees that any entity only appears after all its passengers have appeared in the stream. This is useful for certain actions that must be applied on passengers before applying on this entity.
- Specified by:
streamPassengersAndSelf
in interfaceEntityLike
- See Also:
- Mappings:
Namespace Name Mixin selector official cQ
Ldfp;cQ()Ljava/util/stream/Stream;
intermediary method_31748
Lnet/minecraft/class_5568;method_31748()Ljava/util/stream/Stream;
named streamPassengersAndSelf
Lnet/minecraft/world/entity/EntityLike;streamPassengersAndSelf()Ljava/util/stream/Stream;
-
getPassengersDeep
Returns an iterable of all passengers.This is recursive; for example, if a boat has 2 pigs, ridden by player A and player B, then
boat.streamIntoPassengers()
would return a stream of the first pig, player A, the second pig, and player B. This does not stream the vehicle itself.- Returns:
- an iterable of all passengers
- See Also:
- Mappings:
Namespace Name Mixin selector official cR
Lbfh;cR()Ljava/lang/Iterable;
intermediary method_5736
Lnet/minecraft/class_1297;method_5736()Ljava/lang/Iterable;
named getPassengersDeep
Lnet/minecraft/entity/Entity;getPassengersDeep()Ljava/lang/Iterable;
-
hasPlayerRider
public boolean hasPlayerRider()Returns whether a player is riding this entity or any of its passengers.- Returns:
- whether a player is riding this entity or any of its passengers
- See Also:
- Implementation Note:
- The default implementation is very inefficient.
- Mappings:
Namespace Name Mixin selector official cS
Lbfh;cS()Z
intermediary method_5817
Lnet/minecraft/class_1297;method_5817()Z
named hasPlayerRider
Lnet/minecraft/entity/Entity;hasPlayerRider()Z
-
getRootVehicle
Returns the lowest entity this entity is riding.- Returns:
- the lowest entity this entity is riding
- See Also:
- Mappings:
Namespace Name Mixin selector official cT
Lbfh;cT()Lbfh;
intermediary method_5668
Lnet/minecraft/class_1297;method_5668()Lnet/minecraft/class_1297;
named getRootVehicle
Lnet/minecraft/entity/Entity;getRootVehicle()Lnet/minecraft/entity/Entity;
-
isConnectedThroughVehicle
Returns whether this entity and another entity share the same root vehicle.- Parameters:
entity
- the other entity- Returns:
- whether this entity and another entity share the same root vehicle
- See Also:
- Mappings:
Namespace Name Mixin selector official v
Lbfh;v(Lbfh;)Z
intermediary method_5794
Lnet/minecraft/class_1297;method_5794(Lnet/minecraft/class_1297;)Z
named isConnectedThroughVehicle
Lnet/minecraft/entity/Entity;isConnectedThroughVehicle(Lnet/minecraft/entity/Entity;)Z
-
hasPassengerDeep
Returns whetherpassenger
is riding this entity or any of its passengers.- Returns:
- whether
passenger
is riding this entity or any of its passengers - See Also:
- Mappings:
Namespace Name Mixin selector official w
Lbfh;w(Lbfh;)Z
intermediary method_5821
Lnet/minecraft/class_1297;method_5821(Lnet/minecraft/class_1297;)Z
named hasPassengerDeep
Lnet/minecraft/entity/Entity;hasPassengerDeep(Lnet/minecraft/entity/Entity;)Z
-
isLogicalSideForUpdatingMovement
public boolean isLogicalSideForUpdatingMovement()Returns whether the current side is responsible for updating the movement.For non-player ridden entities, this checks whether the entity is on the server; for player-ridden entities, this checks whether the entity is on the client.
- Returns:
- whether the current side is responsible for updating the movement
- See Also:
- Mappings:
Namespace Name Mixin selector official cU
Lbfh;cU()Z
intermediary method_5787
Lnet/minecraft/class_1297;method_5787()Z
named isLogicalSideForUpdatingMovement
Lnet/minecraft/entity/Entity;isLogicalSideForUpdatingMovement()Z
-
canMoveVoluntarily
public boolean canMoveVoluntarily()- Mappings:
Namespace Name Mixin selector official cV
Lbfh;cV()Z
intermediary method_6034
Lnet/minecraft/class_1297;method_6034()Z
named canMoveVoluntarily
Lnet/minecraft/entity/Entity;canMoveVoluntarily()Z
-
getPassengerDismountOffset
protected static Vec3d getPassengerDismountOffset(double vehicleWidth, double passengerWidth, float passengerYaw) Returns the offset for dismounting the passenger.- Returns:
- the offset for dismounting the passenger
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(DDF)Leea;
intermediary method_24826
Lnet/minecraft/class_1297;method_24826(DDF)Lnet/minecraft/class_243;
named getPassengerDismountOffset
Lnet/minecraft/entity/Entity;getPassengerDismountOffset(DDF)Lnet/minecraft/util/math/Vec3d;
-
updatePassengerForDismount
Returns the position of the dismountedpassenger
.Vehicles should override this to return a suitable dismounting position for the passenger. Check the implementation of the subclass for details.
- Returns:
- the position of the dismounted
passenger
- See Also:
- Mappings:
Namespace Name Mixin selector official b
Lbfh;b(Lbfx;)Leea;
intermediary method_24829
Lnet/minecraft/class_1297;method_24829(Lnet/minecraft/class_1309;)Lnet/minecraft/class_243;
named updatePassengerForDismount
Lnet/minecraft/entity/Entity;updatePassengerForDismount(Lnet/minecraft/entity/LivingEntity;)Lnet/minecraft/util/math/Vec3d;
-
getVehicle
Returns the entity this entity rides, ornull
if there is none.- Returns:
- the entity this entity rides, or
null
if there is none - See Also:
- Mappings:
Namespace Name Mixin selector official cW
Lbfh;cW()Lbfh;
intermediary method_5854
Lnet/minecraft/class_1297;method_5854()Lnet/minecraft/class_1297;
named getVehicle
Lnet/minecraft/entity/Entity;getVehicle()Lnet/minecraft/entity/Entity;
-
getControllingVehicle
Returns the entity this entity rides and controls, ornull
if there is none.- Returns:
- the entity this entity rides and controls, or
null
if there is none - See Also:
- Mappings:
Namespace Name Mixin selector official cX
Lbfh;cX()Lbfh;
intermediary method_49694
Lnet/minecraft/class_1297;method_49694()Lnet/minecraft/class_1297;
named getControllingVehicle
Lnet/minecraft/entity/Entity;getControllingVehicle()Lnet/minecraft/entity/Entity;
-
getPistonBehavior
Returns the behavior of the piston for this entity.This is
PistonBehavior.NORMAL
by default.AreaEffectCloudEntity
,MarkerEntity
, and markerArmorStandEntity
returnPistonBehavior.IGNORE
, causing the piston to not affect the entity's position. Other piston behaviors are inapplicable to entities, and treated likePistonBehavior.NORMAL
.- Returns:
- the behavior of the piston for this entity
- Mappings:
Namespace Name Mixin selector official k_
Lbfh;k_()Ldxg;
intermediary method_5657
Lnet/minecraft/class_1297;method_5657()Lnet/minecraft/class_3619;
named getPistonBehavior
Lnet/minecraft/entity/Entity;getPistonBehavior()Lnet/minecraft/block/piston/PistonBehavior;
-
getSoundCategory
Returns the sound category for sounds from this entity.This is used by
playSound(SoundEvent, float, float)
and defaults toSoundCategory.NEUTRAL
. Hostile entities should override this to returnSoundCategory.HOSTILE
.- Returns:
- the sound category for sounds from this entity
- See Also:
- Mappings:
Namespace Name Mixin selector official cY
Lbfh;cY()Lami;
intermediary method_5634
Lnet/minecraft/class_1297;method_5634()Lnet/minecraft/class_3419;
named getSoundCategory
Lnet/minecraft/entity/Entity;getSoundCategory()Lnet/minecraft/sound/SoundCategory;
-
getBurningDuration
protected int getBurningDuration()- Mappings:
Namespace Name Mixin selector official cZ
Lbfh;cZ()I
intermediary method_5676
Lnet/minecraft/class_1297;method_5676()I
named getBurningDuration
Lnet/minecraft/entity/Entity;getBurningDuration()I
-
getCommandSource
Returns a command source which represents this entity.- Returns:
- a command source which represents this entity
- Mappings:
Namespace Name Mixin selector official da
Lbfh;da()Lds;
intermediary method_5671
Lnet/minecraft/class_1297;method_5671()Lnet/minecraft/class_2168;
named getCommandSource
Lnet/minecraft/entity/Entity;getCommandSource()Lnet/minecraft/server/command/ServerCommandSource;
-
getPermissionLevel
protected int getPermissionLevel()Returns the permission level of this entity.This is
0
for non-players.- Returns:
- the permission level of this entity
- See Also:
- Mappings:
Namespace Name Mixin selector official B
Lbfh;B()I
intermediary method_5691
Lnet/minecraft/class_1297;method_5691()I
named getPermissionLevel
Lnet/minecraft/entity/Entity;getPermissionLevel()I
-
hasPermissionLevel
public boolean hasPermissionLevel(int permissionLevel) Returns whether this entity has at least permission levelpermissionLevel
.This is always
false
for non-players.- Returns:
- whether this entity has at least permission level
permissionLevel
- See Also:
- Mappings:
Namespace Name Mixin selector official l
Lbfh;l(I)Z
intermediary method_5687
Lnet/minecraft/class_1297;method_5687(I)Z
named hasPermissionLevel
Lnet/minecraft/entity/Entity;hasPermissionLevel(I)Z
-
shouldReceiveFeedback
public boolean shouldReceiveFeedback()- Specified by:
shouldReceiveFeedback
in interfaceCommandOutput
- Mappings:
Namespace Name Mixin selector official e_
Ldr;e_()Z
intermediary method_9200
Lnet/minecraft/class_2165;method_9200()Z
named shouldReceiveFeedback
Lnet/minecraft/server/command/CommandOutput;shouldReceiveFeedback()Z
-
shouldTrackOutput
public boolean shouldTrackOutput()- Specified by:
shouldTrackOutput
in interfaceCommandOutput
- Mappings:
Namespace Name Mixin selector official p_
Ldr;p_()Z
intermediary method_9202
Lnet/minecraft/class_2165;method_9202()Z
named shouldTrackOutput
Lnet/minecraft/server/command/CommandOutput;shouldTrackOutput()Z
-
shouldBroadcastConsoleToOps
public boolean shouldBroadcastConsoleToOps()- Specified by:
shouldBroadcastConsoleToOps
in interfaceCommandOutput
- Mappings:
Namespace Name Mixin selector official M_
Ldr;M_()Z
intermediary method_9201
Lnet/minecraft/class_2165;method_9201()Z
named shouldBroadcastConsoleToOps
Lnet/minecraft/server/command/CommandOutput;shouldBroadcastConsoleToOps()Z
-
lookAt
Changes this entity's pitch and yaw to look attarget
.- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Leb$a;Leea;)V
intermediary method_5702
Lnet/minecraft/class_1297;method_5702(Lnet/minecraft/class_2183$class_2184;Lnet/minecraft/class_243;)V
named lookAt
Lnet/minecraft/entity/Entity;lookAt(Lnet/minecraft/command/argument/EntityAnchorArgumentType$EntityAnchor;Lnet/minecraft/util/math/Vec3d;)V
-
updateMovementInFluid
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lanl;D)Z
intermediary method_5692
Lnet/minecraft/class_1297;method_5692(Lnet/minecraft/class_6862;D)Z
named updateMovementInFluid
Lnet/minecraft/entity/Entity;updateMovementInFluid(Lnet/minecraft/registry/tag/TagKey;D)Z
-
isRegionUnloaded
public boolean isRegionUnloaded()Returns whether any part of this entity's bounding box is in an unloaded region of the world the entity is in.- Returns:
- whether any part of this entity's bounding box is in an unloaded region of the world the entity is in
- Implementation Note:
- This implementation expands this entity's bounding box by 1 in each axis and checks whether the expanded box's smallest enclosing axis-aligned integer box is fully loaded in the world.
- Mappings:
Namespace Name Mixin selector official db
Lbfh;db()Z
intermediary method_33724
Lnet/minecraft/class_1297;method_33724()Z
named isRegionUnloaded
Lnet/minecraft/entity/Entity;isRegionUnloaded()Z
-
getFluidHeight
Returns the height of the fluid influid
tag.- Returns:
- the height of the fluid in
fluid
tag - Mappings:
Namespace Name Mixin selector official b
Lbfh;b(Lanl;)D
intermediary method_5861
Lnet/minecraft/class_1297;method_5861(Lnet/minecraft/class_6862;)D
named getFluidHeight
Lnet/minecraft/entity/Entity;getFluidHeight(Lnet/minecraft/registry/tag/TagKey;)D
-
getSwimHeight
public double getSwimHeight()Returns the minimum submerged height of this entity in fluid so that it would be affected by fluid physics.- Returns:
- the minimum submerged height of this entity in fluid so that it would be affected by fluid physics
- API Note:
- This is also used by living entities for checking whether to start swimming.
- Implementation Note:
- This implementation returns
0.4
if its standing eye height is larger than0.4
; otherwise it returns0.0
for shorter entities. The swim height of 0 allows short entities like baby animals to start swimming to avoid suffocation. - Mappings:
Namespace Name Mixin selector official dc
Lbfh;dc()D
intermediary method_29241
Lnet/minecraft/class_1297;method_29241()D
named getSwimHeight
Lnet/minecraft/entity/Entity;getSwimHeight()D
-
getWidth
public final float getWidth()Returns the width of the entity's current dimension.- Returns:
- the width of the entity's current dimension
- Mappings:
Namespace Name Mixin selector official dd
Lbfh;dd()F
intermediary method_17681
Lnet/minecraft/class_1297;method_17681()F
named getWidth
Lnet/minecraft/entity/Entity;getWidth()F
-
getHeight
public final float getHeight()Returns the height of the entity's current dimension.- Returns:
- the height of the entity's current dimension
- Mappings:
Namespace Name Mixin selector official de
Lbfh;de()F
intermediary method_17682
Lnet/minecraft/class_1297;method_17682()F
named getHeight
Lnet/minecraft/entity/Entity;getHeight()F
-
getNameLabelHeight
public float getNameLabelHeight()- Mappings:
Namespace Name Mixin selector official df
Lbfh;df()F
intermediary method_51152
Lnet/minecraft/class_1297;method_51152()F
named getNameLabelHeight
Lnet/minecraft/entity/Entity;getNameLabelHeight()F
-
createSpawnPacket
Returns a packet to notify the clients of the entity's spawning.- Returns:
- a packet to notify the clients of the entity's spawning
- API Note:
- Subclasses should return
new EntitySpawnS2CPacket(this)
, unless they use a custom spawning packet. - Mappings:
Namespace Name Mixin selector official S
Lbfh;S()Luo;
intermediary method_18002
Lnet/minecraft/class_1297;method_18002()Lnet/minecraft/class_2596;
named createSpawnPacket
Lnet/minecraft/entity/Entity;createSpawnPacket()Lnet/minecraft/network/packet/Packet;
-
getDimensions
Returns the dimensions of the entity with the givenpose
.- Returns:
- the dimensions of the entity with the given
pose
- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lbgj;)Lbfi;
intermediary method_18377
Lnet/minecraft/class_1297;method_18377(Lnet/minecraft/class_4050;)Lnet/minecraft/class_4048;
named getDimensions
Lnet/minecraft/entity/Entity;getDimensions(Lnet/minecraft/entity/EntityPose;)Lnet/minecraft/entity/EntityDimensions;
-
getPos
Returns the exact position of the entity.- Returns:
- the exact position of the entity
- See Also:
- Mappings:
Namespace Name Mixin selector official dg
Lbfh;dg()Leea;
intermediary method_19538
Lnet/minecraft/class_1297;method_19538()Lnet/minecraft/class_243;
named getPos
Lnet/minecraft/entity/Entity;getPos()Lnet/minecraft/util/math/Vec3d;
-
getSyncedPos
Returns the position of the entity synced to clients.This is the same as
getPos()
except for paintings which return the attachment position.- Returns:
- the position of the entity synced to clients
- See Also:
- Mappings:
Namespace Name Mixin selector official dh
Lbfh;dh()Leea;
intermediary method_43390
Lnet/minecraft/class_1297;method_43390()Lnet/minecraft/class_243;
named getSyncedPos
Lnet/minecraft/entity/Entity;getSyncedPos()Lnet/minecraft/util/math/Vec3d;
-
getBlockPos
- Specified by:
getBlockPos
in interfaceEntityLike
- Mappings:
Namespace Name Mixin selector official di
Ldfp;di()Lgu;
intermediary method_24515
Lnet/minecraft/class_5568;method_24515()Lnet/minecraft/class_2338;
named getBlockPos
Lnet/minecraft/world/entity/EntityLike;getBlockPos()Lnet/minecraft/util/math/BlockPos;
-
getBlockStateAtPos
Returns the block state at the entity's position.The result is cached.
- Returns:
- the block state at the entity's position
- See Also:
- Mappings:
Namespace Name Mixin selector official dj
Lbfh;dj()Ldby;
intermediary method_36601
Lnet/minecraft/class_1297;method_36601()Lnet/minecraft/class_2680;
named getBlockStateAtPos
Lnet/minecraft/entity/Entity;getBlockStateAtPos()Lnet/minecraft/block/BlockState;
-
getChunkPos
Returns the chunk position of the entity.- Returns:
- the chunk position of the entity
- Mappings:
Namespace Name Mixin selector official dk
Lbfh;dk()Lclr;
intermediary method_31476
Lnet/minecraft/class_1297;method_31476()Lnet/minecraft/class_1923;
named getChunkPos
Lnet/minecraft/entity/Entity;getChunkPos()Lnet/minecraft/util/math/ChunkPos;
-
getVelocity
- Mappings:
Namespace Name Mixin selector official dl
Lbfh;dl()Leea;
intermediary method_18798
Lnet/minecraft/class_1297;method_18798()Lnet/minecraft/class_243;
named getVelocity
Lnet/minecraft/entity/Entity;getVelocity()Lnet/minecraft/util/math/Vec3d;
-
setVelocity
- Mappings:
Namespace Name Mixin selector official f
Lbfh;f(Leea;)V
intermediary method_18799
Lnet/minecraft/class_1297;method_18799(Lnet/minecraft/class_243;)V
named setVelocity
Lnet/minecraft/entity/Entity;setVelocity(Lnet/minecraft/util/math/Vec3d;)V
-
addVelocity
- Mappings:
Namespace Name Mixin selector official g
Lbfh;g(Leea;)V
intermediary method_45319
Lnet/minecraft/class_1297;method_45319(Lnet/minecraft/class_243;)V
named addVelocity
Lnet/minecraft/entity/Entity;addVelocity(Lnet/minecraft/util/math/Vec3d;)V
-
setVelocity
public void setVelocity(double x, double y, double z) - Mappings:
Namespace Name Mixin selector official o
Lbfh;o(DDD)V
intermediary method_18800
Lnet/minecraft/class_1297;method_18800(DDD)V
named setVelocity
Lnet/minecraft/entity/Entity;setVelocity(DDD)V
-
getBlockX
public final int getBlockX()- Mappings:
Namespace Name Mixin selector official dm
Lbfh;dm()I
intermediary method_31477
Lnet/minecraft/class_1297;method_31477()I
named getBlockX
Lnet/minecraft/entity/Entity;getBlockX()I
-
getX
public final double getX()- Mappings:
Namespace Name Mixin selector official dn
Lbfh;dn()D
intermediary method_23317
Lnet/minecraft/class_1297;method_23317()D
named getX
Lnet/minecraft/entity/Entity;getX()D
-
offsetX
public double offsetX(double widthScale) - Mappings:
Namespace Name Mixin selector official c
Lbfh;c(D)D
intermediary method_23316
Lnet/minecraft/class_1297;method_23316(D)D
named offsetX
Lnet/minecraft/entity/Entity;offsetX(D)D
-
getParticleX
public double getParticleX(double widthScale) - Mappings:
Namespace Name Mixin selector official d
Lbfh;d(D)D
intermediary method_23322
Lnet/minecraft/class_1297;method_23322(D)D
named getParticleX
Lnet/minecraft/entity/Entity;getParticleX(D)D
-
getBlockY
public final int getBlockY()- Mappings:
Namespace Name Mixin selector official do
Lbfh;do()I
intermediary method_31478
Lnet/minecraft/class_1297;method_31478()I
named getBlockY
Lnet/minecraft/entity/Entity;getBlockY()I
-
getY
public final double getY()- Mappings:
Namespace Name Mixin selector official dp
Lbfh;dp()D
intermediary method_23318
Lnet/minecraft/class_1297;method_23318()D
named getY
Lnet/minecraft/entity/Entity;getY()D
-
getBodyY
public double getBodyY(double heightScale) - Mappings:
Namespace Name Mixin selector official e
Lbfh;e(D)D
intermediary method_23323
Lnet/minecraft/class_1297;method_23323(D)D
named getBodyY
Lnet/minecraft/entity/Entity;getBodyY(D)D
-
getRandomBodyY
public double getRandomBodyY()- Mappings:
Namespace Name Mixin selector official dq
Lbfh;dq()D
intermediary method_23319
Lnet/minecraft/class_1297;method_23319()D
named getRandomBodyY
Lnet/minecraft/entity/Entity;getRandomBodyY()D
-
getEyeY
public double getEyeY()- Mappings:
Namespace Name Mixin selector official dr
Lbfh;dr()D
intermediary method_23320
Lnet/minecraft/class_1297;method_23320()D
named getEyeY
Lnet/minecraft/entity/Entity;getEyeY()D
-
getBlockZ
public final int getBlockZ()- Mappings:
Namespace Name Mixin selector official ds
Lbfh;ds()I
intermediary method_31479
Lnet/minecraft/class_1297;method_31479()I
named getBlockZ
Lnet/minecraft/entity/Entity;getBlockZ()I
-
getZ
public final double getZ()- Mappings:
Namespace Name Mixin selector official dt
Lbfh;dt()D
intermediary method_23321
Lnet/minecraft/class_1297;method_23321()D
named getZ
Lnet/minecraft/entity/Entity;getZ()D
-
offsetZ
public double offsetZ(double widthScale) - Mappings:
Namespace Name Mixin selector official f
Lbfh;f(D)D
intermediary method_23324
Lnet/minecraft/class_1297;method_23324(D)D
named offsetZ
Lnet/minecraft/entity/Entity;offsetZ(D)D
-
getParticleZ
public double getParticleZ(double widthScale) - Mappings:
Namespace Name Mixin selector official g
Lbfh;g(D)D
intermediary method_23325
Lnet/minecraft/class_1297;method_23325(D)D
named getParticleZ
Lnet/minecraft/entity/Entity;getParticleZ(D)D
-
setPos
public final void setPos(double x, double y, double z) Sets the position of this entity.This should be used when overriding
tick()
to change the entity's position; in other cases, usesetPosition(double, double, double)
orrefreshPositionAndAngles(double, double, double, float, float)
.- See Also:
- Mappings:
Namespace Name Mixin selector official p
Lbfh;p(DDD)V
intermediary method_23327
Lnet/minecraft/class_1297;method_23327(DDD)V
named setPos
Lnet/minecraft/entity/Entity;setPos(DDD)V
-
checkDespawn
public void checkDespawn()Checks whether the entity should be despawned.To despawn this entity, call
discard()
.- See Also:
- Mappings:
Namespace Name Mixin selector official du
Lbfh;du()V
intermediary method_5982
Lnet/minecraft/class_1297;method_5982()V
named checkDespawn
Lnet/minecraft/entity/Entity;checkDespawn()V
-
getLeashPos
Returns the position of the leash this entity holds.This is different from
getLeashOffset(float)
; this method is called on the entity that holds the leash.- Returns:
- the position of the leash this entity holds
- See Also:
- Mappings:
Namespace Name Mixin selector official q
Lbfh;q(F)Leea;
intermediary method_30951
Lnet/minecraft/class_1297;method_30951(F)Lnet/minecraft/class_243;
named getLeashPos
Lnet/minecraft/entity/Entity;getLeashPos(F)Lnet/minecraft/util/math/Vec3d;
-
onSpawnPacket
Called on the client when the entity receives a spawn packet.This sets the entity's position, angles, ID, and UUID. Subclasses can override this to initialize additional fields.
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lus;)V
intermediary method_31471
Lnet/minecraft/class_1297;method_31471(Lnet/minecraft/class_2604;)V
named onSpawnPacket
Lnet/minecraft/entity/Entity;onSpawnPacket(Lnet/minecraft/network/packet/s2c/play/EntitySpawnS2CPacket;)V
-
getPickBlockStack
Returns the stack for creative "pick block" functionality, ornull
if there is none.If the entity has an item representation (such as boats or minecarts), this should be overridden to return a new stack. Note that
MobEntity
handles the spawn eggs.ItemFrameEntity
instead returns the copy of the stack held in the frame.- Returns:
- the stack for creative "pick block" functionality, or
null
if there is none - Mappings:
Namespace Name Mixin selector official dv
Lbfh;dv()Lcfx;
intermediary method_31480
Lnet/minecraft/class_1297;method_31480()Lnet/minecraft/class_1799;
named getPickBlockStack
Lnet/minecraft/entity/Entity;getPickBlockStack()Lnet/minecraft/item/ItemStack;
-
setInPowderSnow
public void setInPowderSnow(boolean inPowderSnow) - Mappings:
Namespace Name Mixin selector official p
Lbfh;p(Z)V
intermediary method_32319
Lnet/minecraft/class_1297;method_32319(Z)V
named setInPowderSnow
Lnet/minecraft/entity/Entity;setInPowderSnow(Z)V
-
canFreeze
public boolean canFreeze()Returns whether the entity can freeze.- Returns:
- whether the entity can freeze
- Implementation Note:
- Entities cannot be frozen if they are in the
EntityTypeTags.FREEZE_IMMUNE_ENTITY_TYPES
tag. In addition to this,LivingEntity
cannot be frozen if they are spectator or if they wear an item insideItemTags.FREEZE_IMMUNE_WEARABLES
tag. - Mappings:
Namespace Name Mixin selector official dw
Lbfh;dw()Z
intermediary method_32316
Lnet/minecraft/class_1297;method_32316()Z
named canFreeze
Lnet/minecraft/entity/Entity;canFreeze()Z
-
shouldEscapePowderSnow
public boolean shouldEscapePowderSnow()Returns whether the entity should escape from powder snow.This returns
true
if the entity is/was in powder snow and if it can freeze.- Returns:
- whether the entity should escape from powder snow
- See Also:
- Mappings:
Namespace Name Mixin selector official dx
Lbfh;dx()Z
intermediary method_40071
Lnet/minecraft/class_1297;method_40071()Z
named shouldEscapePowderSnow
Lnet/minecraft/entity/Entity;shouldEscapePowderSnow()Z
-
getYaw
public float getYaw()- Mappings:
Namespace Name Mixin selector official dy
Lbfh;dy()F
intermediary method_36454
Lnet/minecraft/class_1297;method_36454()F
named getYaw
Lnet/minecraft/entity/Entity;getYaw()F
-
getBodyYaw
public float getBodyYaw()Returns the body yaw of the entity.- Returns:
- the body yaw of the entity
- See Also:
- Mappings:
Namespace Name Mixin selector official dz
Lbfh;dz()F
intermediary method_43078
Lnet/minecraft/class_1297;method_43078()F
named getBodyYaw
Lnet/minecraft/entity/Entity;getBodyYaw()F
-
setYaw
public void setYaw(float yaw) - Mappings:
Namespace Name Mixin selector official a_
Lbfh;a_(F)V
intermediary method_36456
Lnet/minecraft/class_1297;method_36456(F)V
named setYaw
Lnet/minecraft/entity/Entity;setYaw(F)V
-
getPitch
public float getPitch()- Mappings:
Namespace Name Mixin selector official dA
Lbfh;dA()F
intermediary method_36455
Lnet/minecraft/class_1297;method_36455()F
named getPitch
Lnet/minecraft/entity/Entity;getPitch()F
-
setPitch
public void setPitch(float pitch) - Mappings:
Namespace Name Mixin selector official b_
Lbfh;b_(F)V
intermediary method_36457
Lnet/minecraft/class_1297;method_36457(F)V
named setPitch
Lnet/minecraft/entity/Entity;setPitch(F)V
-
canSprintAsVehicle
public boolean canSprintAsVehicle()- Mappings:
Namespace Name Mixin selector official dB
Lbfh;dB()Z
intermediary method_48155
Lnet/minecraft/class_1297;method_48155()Z
named canSprintAsVehicle
Lnet/minecraft/entity/Entity;canSprintAsVehicle()Z
-
getStepHeight
public float getStepHeight()- Mappings:
Namespace Name Mixin selector official dC
Lbfh;dC()F
intermediary method_49476
Lnet/minecraft/class_1297;method_49476()F
named getStepHeight
Lnet/minecraft/entity/Entity;getStepHeight()F
-
setStepHeight
public void setStepHeight(float stepHeight) - Mappings:
Namespace Name Mixin selector official r
Lbfh;r(F)V
intermediary method_49477
Lnet/minecraft/class_1297;method_49477(F)V
named setStepHeight
Lnet/minecraft/entity/Entity;setStepHeight(F)V
-
isRemoved
public final boolean isRemoved()Returns whether the entity is removed.Removed entities should not be interacted with.
- Returns:
- whether the entity is removed
- Mappings:
Namespace Name Mixin selector official dD
Lbfh;dD()Z
intermediary method_31481
Lnet/minecraft/class_1297;method_31481()Z
named isRemoved
Lnet/minecraft/entity/Entity;isRemoved()Z
-
getRemovalReason
Returns the reason for the entity's removal, ornull
if it is not removed.- Returns:
- the reason for the entity's removal, or
null
if it is not removed - Mappings:
Namespace Name Mixin selector official dE
Lbfh;dE()Lbfh$c;
intermediary method_35049
Lnet/minecraft/class_1297;method_35049()Lnet/minecraft/class_1297$class_5529;
named getRemovalReason
Lnet/minecraft/entity/Entity;getRemovalReason()Lnet/minecraft/entity/Entity$RemovalReason;
-
setRemoved
- Specified by:
setRemoved
in interfaceEntityLike
- Mappings:
Namespace Name Mixin selector official b
Ldfp;b(Lbfh$c;)V
intermediary method_31745
Lnet/minecraft/class_5568;method_31745(Lnet/minecraft/class_1297$class_5529;)V
named setRemoved
Lnet/minecraft/world/entity/EntityLike;setRemoved(Lnet/minecraft/entity/Entity$RemovalReason;)V
-
unsetRemoved
protected void unsetRemoved()Unsets this entity's removal.This should rarely be used; this is only used by players during teleportation.
- Mappings:
Namespace Name Mixin selector official dF
Lbfh;dF()V
intermediary method_31482
Lnet/minecraft/class_1297;method_31482()V
named unsetRemoved
Lnet/minecraft/entity/Entity;unsetRemoved()V
-
setChangeListener
- Specified by:
setChangeListener
in interfaceEntityLike
- Mappings:
Namespace Name Mixin selector official a
Ldfp;a(Ldfq;)V
intermediary method_31744
Lnet/minecraft/class_5568;method_31744(Lnet/minecraft/class_5569;)V
named setChangeListener
Lnet/minecraft/world/entity/EntityLike;setChangeListener(Lnet/minecraft/world/entity/EntityChangeListener;)V
-
shouldSave
public boolean shouldSave()- Specified by:
shouldSave
in interfaceEntityLike
- Mappings:
Namespace Name Mixin selector official dG
Ldfp;dG()Z
intermediary method_31746
Lnet/minecraft/class_5568;method_31746()Z
named shouldSave
Lnet/minecraft/world/entity/EntityLike;shouldSave()Z
-
isPlayer
public boolean isPlayer()- Specified by:
isPlayer
in interfaceEntityLike
- Mappings:
Namespace Name Mixin selector official dH
Ldfp;dH()Z
intermediary method_31747
Lnet/minecraft/class_5568;method_31747()Z
named isPlayer
Lnet/minecraft/world/entity/EntityLike;isPlayer()Z
-
canModifyAt
Returns whether the entity can modify the world atpos
.This returns
true
for most entities. Players checkWorld.canPlayerModifyAt(net.minecraft.entity.player.PlayerEntity, net.minecraft.util.math.BlockPos)
to prevent them from modifying entities in the spawn protection or outside the world border.ProjectileEntity
delegates it to the owner if the owner is a player; if the owner is a non-player entity, this returns the value ofGameRules.DO_MOB_GRIEFING
, and ownerless projectiles are always allowed to modify the world.- Returns:
- whether the entity can modify the world at
pos
- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lcmk;Lgu;)Z
intermediary method_36971
Lnet/minecraft/class_1297;method_36971(Lnet/minecraft/class_1937;Lnet/minecraft/class_2338;)Z
named canModifyAt
Lnet/minecraft/entity/Entity;canModifyAt(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)Z
-
getWorld
- Mappings:
Namespace Name Mixin selector official dI
Lbfh;dI()Lcmk;
intermediary method_37908
Lnet/minecraft/class_1297;method_37908()Lnet/minecraft/class_1937;
named getWorld
Lnet/minecraft/entity/Entity;getWorld()Lnet/minecraft/world/World;
-
setWorld
- Mappings:
Namespace Name Mixin selector official a
Lbfh;a(Lcmk;)V
intermediary method_51502
Lnet/minecraft/class_1297;method_51502(Lnet/minecraft/class_1937;)V
named setWorld
Lnet/minecraft/entity/Entity;setWorld(Lnet/minecraft/world/World;)V
-
getDamageSources
- Mappings:
Namespace Name Mixin selector official dJ
Lbfh;dJ()Lben;
intermediary method_48923
Lnet/minecraft/class_1297;method_48923()Lnet/minecraft/class_8109;
named getDamageSources
Lnet/minecraft/entity/Entity;getDamageSources()Lnet/minecraft/entity/damage/DamageSources;
-