Package ch.njol.skript.expressions
Class ExprEyeLocation
java.lang.Object
ch.njol.skript.lang.util.SimpleExpression<T>
ch.njol.skript.expressions.base.PropertyExpression<F,T>
ch.njol.skript.expressions.base.SimplePropertyExpression<org.bukkit.entity.LivingEntity,org.bukkit.Location>
ch.njol.skript.expressions.ExprEyeLocation
- All Implemented Interfaces:
Converter<org.bukkit.entity.LivingEntity,org.bukkit.Location>
,Debuggable
,Expression<org.bukkit.Location>
,SyntaxElement
@Name("Head location")
@Description({"The location of an entity\'s head, mostly useful for players and e.g. looping blocks in the player\'s line of sight.","Please note that this location is only accurate for entities whose head is exactly above their center, i.e. players, endermen, zombies, skeletons, etc., but not sheep, pigs or cows."})
@Examples({"set the block at the player\'s head to air","set the block in front of the player\'s eyes to glass","loop blocks in front of the player\'s head:"})
@Since("2.0")
public class ExprEyeLocation
extends SimplePropertyExpression<org.bukkit.entity.LivingEntity,org.bukkit.Location>
-
Nested Class Summary
Nested classes/interfaces inherited from interface ch.njol.skript.classes.Converter
Converter.ConverterInfo<F,T>, Converter.ConverterUtils
-
Field Summary
Fields inherited from interface ch.njol.skript.classes.Converter
NO_CHAINING, NO_COMMAND_ARGUMENTS, NO_LEFT_CHAINING, NO_RIGHT_CHAINING
-
Constructor Summary
-
Method Summary
Methods inherited from class ch.njol.skript.expressions.base.SimplePropertyExpression
get, init, toString
Methods inherited from class ch.njol.skript.expressions.base.PropertyExpression
get, get, getAll, getAnd, getExpr, isSingle, register, setExpr, simplify
Methods inherited from class ch.njol.skript.lang.util.SimpleExpression
acceptChange, change, check, check, check, getArray, getConvertedExpr, getConvertedExpression, getSingle, getSource, getTime, isDefault, isLoopOf, iterator, setTime, setTime, setTime, setTime, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface ch.njol.skript.lang.Expression
beforeChange, stream
Methods inherited from interface ch.njol.skript.lang.SyntaxElement
getParser
-
Constructor Details
-
ExprEyeLocation
public ExprEyeLocation()
-
-
Method Details
-
getReturnType
Description copied from interface:Expression
Gets the return type of this expression.- Returns:
- A supertype of any objects returned by
Expression.getSingle(Event)
and the component type of any arrays returned byExpression.getArray(Event)
-
getPropertyName
- Specified by:
getPropertyName
in classSimplePropertyExpression<org.bukkit.entity.LivingEntity,org.bukkit.Location>
-
convert
public @Nullable org.bukkit.Location convert(org.bukkit.entity.LivingEntity e)Description copied from interface:Converter
Converts an object from the given to the desired type.- Specified by:
convert
in interfaceConverter<org.bukkit.entity.LivingEntity,org.bukkit.Location>
- Specified by:
convert
in classSimplePropertyExpression<org.bukkit.entity.LivingEntity,org.bukkit.Location>
- Parameters:
e
- The object to convert.- Returns:
- the converted object
-