Interface EnderSignal
- All Superinterfaces:
CommandSender, Entity, Metadatable, Nameable, Permissible, PersistentDataHolder, ServerOperator
Represents an EnderSignal, which is created upon throwing an ender eye.
-
Nested Class Summary
Nested classes/interfaces inherited from interface Entity
Entity.Spigot -
Method Summary
Modifier and TypeMethodDescriptionintGets the amount of time this entity has been alive (in ticks).booleanGets if the EnderSignal should drop an item on death.
Iftrue, it will drop an item.getItem()Get theItemStackto be displayed while in the air and to be dropped on death.Get the location this EnderSignal is moving towards.voidsetDespawnTimer(int timer) Set how long this entity has been alive (in ticks).voidsetDropItem(boolean drop) Sets if the EnderSignal should drop an item on death; or if it should shatter.voidSet theItemStackto be displayed while in the air and to be dropped on death.voidsetTargetLocation(Location location) Set theLocationthis EnderSignal is moving towards.Methods inherited from interface CommandSender
getName, sendMessage, sendMessage, sendMessage, sendMessageMethods inherited from interface Entity
addPassenger, addScoreboardTag, copy, copy, createSnapshot, eject, getAsString, getBoundingBox, getEntityId, getFacing, getFallDistance, getFireTicks, getFreezeTicks, getHeight, getLastDamageCause, getLocation, getLocation, getMaxFireTicks, getMaxFreezeTicks, getNearbyEntities, getPassenger, getPassengers, getPistonMoveReaction, getPortalCooldown, getPose, getScoreboardTags, getServer, getSpawnCategory, getSwimHighSpeedSplashSound, getSwimSound, getSwimSplashSound, getTicksLived, getTrackedBy, getType, getUniqueId, getVehicle, getVelocity, getWidth, getWorld, hasGravity, isCustomNameVisible, isDead, isEmpty, isFrozen, isGlowing, isInsideVehicle, isInvulnerable, isInWater, isInWorld, isOnGround, isPersistent, isSilent, isValid, isVisibleByDefault, isVisualFire, leaveVehicle, playEffect, remove, removePassenger, removeScoreboardTag, setCustomNameVisible, setFallDistance, setFireTicks, setFreezeTicks, setGlowing, setGravity, setInvulnerable, setLastDamageCause, setPassenger, setPersistent, setPortalCooldown, setRotation, setSilent, setTicksLived, setVelocity, setVisibleByDefault, setVisualFire, spigot, teleport, teleport, teleport, teleportMethods inherited from interface Metadatable
getMetadata, hasMetadata, removeMetadata, setMetadataMethods inherited from interface Nameable
getCustomName, setCustomNameMethods inherited from interface Permissible
addAttachment, addAttachment, addAttachment, addAttachment, getEffectivePermissions, hasPermission, hasPermission, isPermissionSet, isPermissionSet, recalculatePermissions, removeAttachmentMethods inherited from interface PersistentDataHolder
getPersistentDataContainerMethods inherited from interface ServerOperator
isOp, setOp
-
Method Details
-
getTargetLocation
-
setTargetLocation
Set theLocationthis EnderSignal is moving towards.
When setting a new target location, thegetDropItem()resets to a random value and the despawn timer gets set back to 0.- Parameters:
location- the new target location
-
getDropItem
boolean getDropItem()Gets if the EnderSignal should drop an item on death.
Iftrue, it will drop an item. Iffalse, it will shatter.- Returns:
- true if the EnderSignal will drop an item on death, or false if it will shatter
-
setDropItem
void setDropItem(boolean drop) Sets if the EnderSignal should drop an item on death; or if it should shatter.- Parameters:
drop- true if the EnderSignal should drop an item on death, or false if it should shatter.
-
getItem
-
setItem
-
getDespawnTimer
int getDespawnTimer()Gets the amount of time this entity has been alive (in ticks).
When this number is greater than 80, it will despawn on the next tick.- Returns:
- the number of ticks this EnderSignal has been alive.
-
setDespawnTimer
void setDespawnTimer(int timer) Set how long this entity has been alive (in ticks).
When this number is greater than 80, it will despawn on the next tick.- Parameters:
timer- how long (in ticks) this EnderSignal has been alive.
-