Class ExprParticleCount
java.lang.Object
ch.njol.skript.lang.util.SimpleExpression<Number>
ch.njol.skript.expressions.base.PropertyExpression<ParticleEffect,Number>
ch.njol.skript.expressions.base.SimplePropertyExpression<ParticleEffect,Number>
org.skriptlang.skript.bukkit.particles.elements.expressions.ExprParticleCount
- All Implemented Interfaces:
Debuggable,Expression<Number>,Loopable<Number>,Simplifiable<Expression<? extends Number>>,SyntaxElement,Converter<ParticleEffect,,Number> RuntimeErrorProducer,SyntaxRuntimeErrorProducer
@Name("Particle Count")
@Description("Sets how many particles to draw.\nParticle count has an influence on how the \'offset\' and \'extra\' values of a particle apply.\nOffsets are treated as distributions if particle count is greater than 0.\nOffsets are treated as velocity or some other special behavior if particle count is 0.\n\nThis means that setting the particle count may change how your particle behaves. Be careful!\n\nMore detailed information on particle behavior can be found at <a href=\"https://docs.papermc.io/paper/dev/particles/#count-argument-behavior\">Paper\'s particle documentation</a>.\n")
@Example("draw 7 blue dust particles at player")
@Since("2.14")
public class ExprParticleCount
extends ch.njol.skript.expressions.base.SimplePropertyExpression<ParticleEffect,Number>
-
Field Summary
Fields inherited from class ch.njol.skript.expressions.base.SimplePropertyExpression
rawExprFields inherited from class ch.njol.skript.expressions.base.PropertyExpression
DEFAULT_PRIORITYFields inherited from interface org.skriptlang.skript.lang.converter.Converter
ALL_CHAINING, ALLOW_UNSAFE_CASTS, NO_CHAINING, NO_LEFT_CHAINING, NO_RIGHT_CHAINING -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionClass<?> @Nullable []Tests whether this expression supports the given mode, and if yes what type it expects thedeltato be.voidchange(org.bukkit.event.Event event, Object @Nullable [] delta, Changer.ChangeMode mode) Changes the expression's value by the given amount.convert(ParticleEffect from) Converts an object using this Converter.protected StringGets the return type of this expression.static voidregister(@NotNull SyntaxRegistry registry, @NotNull Origin origin) Methods inherited from class ch.njol.skript.expressions.base.SimplePropertyExpression
get, init, toStringMethods inherited from class ch.njol.skript.expressions.base.PropertyExpression
get, get, getAll, getAnd, getDefaultPatterns, getExpr, getPatterns, infoBuilder, isSingle, register, register, registerDefault, registerDefault, setExpr, simplifyMethods inherited from class ch.njol.skript.lang.util.SimpleExpression
check, check, check, getArray, getConvertedExpr, getConvertedExpression, getNode, getSingle, getSource, getTime, isDefault, isLoopOf, iterator, preInit, setTime, setTime, setTime, setTime, setTime, supportsLoopPeeking, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface ch.njol.skript.lang.Expression
beforeChange, canBeSingle, canReturn, changeInPlace, changeInPlace, getAcceptedChangeModes, getOptionalSingle, getSyntaxTypeName, possibleReturnTypes, returnNestedStructures, returnsNestedStructures, stream, streamAllMethods inherited from interface org.skriptlang.skript.log.runtime.RuntimeErrorProducer
error, error, getRuntimeErrorManager, warning, warningMethods inherited from interface ch.njol.skript.lang.SyntaxElement
getParserMethods inherited from interface org.skriptlang.skript.log.runtime.SyntaxRuntimeErrorProducer
getErrorSource
-
Constructor Details
-
ExprParticleCount
public ExprParticleCount()
-
-
Method Details
-
register
public static void register(@NotNull @NotNull SyntaxRegistry registry, @NotNull @NotNull Origin origin) -
convert
Description copied from interface:ConverterConverts an object using this Converter.- Specified by:
convertin interfaceConverter<ParticleEffect,Number> - Specified by:
convertin classch.njol.skript.expressions.base.SimplePropertyExpression<ParticleEffect,Number> - Parameters:
from- The object to convert.- Returns:
- The converted object.
-
acceptChange
Description copied from interface:ExpressionTests whether this expression supports the given mode, and if yes what type it expects thedeltato be.Use
Changer.ChangerUtils.acceptsChange(Expression, ChangeMode, Class...)to test whether an expression supports changing, don't directly use this method!Please note that if a changer is registered for this expression's
returnTypethis method does not have to be overridden. If you override it though make sure to return super.acceptChange(mode), and to handle the appropriate ChangeMode(s) inExpression.change(Event, Object[], ChangeMode)with super.change(...).Unlike
Changer.acceptChange(ChangeMode)this method may print errors.- Specified by:
acceptChangein interfaceExpression<Number>- Overrides:
acceptChangein classSimpleExpression<Number>- Parameters:
mode- The mode to check- Returns:
- An array of types that
Expression.change(Event, Object[], ChangeMode)accepts as itsdeltaparameter (which can be arrays to denote that multiple of that type are accepted), or null if the given mode is not supported. ForChanger.ChangeMode.DELETEandChanger.ChangeMode.RESETthis can return any non-null array to mark them as supported.
-
change
public void change(org.bukkit.event.Event event, Object @Nullable [] delta, Changer.ChangeMode mode) Description copied from interface:ExpressionChanges the expression's value by the given amount. This will only be called on supported modes and with the desireddeltatype as returned byExpression.acceptChange(ChangeMode)- Specified by:
changein interfaceExpression<Number>- Overrides:
changein classSimpleExpression<Number>- Parameters:
event- The eventdelta- An array with one or more instances of one or more of the classes returned byExpression.acceptChange(ChangeMode)for the given change mode (null forChanger.ChangeMode.DELETEandChanger.ChangeMode.RESET). This can be a Object[], thus casting is not allowed.mode- TheChanger.ChangeModeof the attempted change
-
getReturnType
Description copied from interface:ExpressionGets 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:
getPropertyNamein classch.njol.skript.expressions.base.SimplePropertyExpression<ParticleEffect,Number>
-