Record Class ApplyImpulseEnchantmentEffect
java.lang.Object
java.lang.Record
net.minecraft.enchantment.effect.entity.ApplyImpulseEnchantmentEffect
- Record Components:
direction-coordinateScale-magnitude-
- All Implemented Interfaces:
EnchantmentEntityEffect,EnchantmentLocationBasedEffect
public record ApplyImpulseEnchantmentEffect(Vec3d direction, Vec3d coordinateScale, EnchantmentLevelBasedValue magnitude)
extends Record
implements EnchantmentEntityEffect
- Mappings:
Namespace Name named net/minecraft/enchantment/effect/entity/ApplyImpulseEnchantmentEffectintermediary net/minecraft/class_12129official drlnamed directionintermediary comp_4981official dnamed coordinateScaleintermediary comp_4982official enamed magnitudeintermediary comp_4983official f
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec<ApplyImpulseEnchantmentEffect> private final Vec3dThe field for thecoordinateScalerecord component.private final Vec3dThe field for thedirectionrecord component.private final EnchantmentLevelBasedValueThe field for themagnituderecord component. -
Constructor Summary
ConstructorsConstructorDescriptionApplyImpulseEnchantmentEffect(Vec3d direction, Vec3d coordinateScale, EnchantmentLevelBasedValue magnitude) Creates an instance of aApplyImpulseEnchantmentEffectrecord class. -
Method Summary
Modifier and TypeMethodDescriptionvoidapply(ServerWorld world, int level, EnchantmentEffectContext context, Entity user, Vec3d pos) Returns the value of thecoordinateScalerecord component.Returns the value of thedirectionrecord component.final booleanIndicates whether some other object is "equal to" this one.com.mojang.serialization.MapCodec<ApplyImpulseEnchantmentEffect> getCodec()final inthashCode()Returns a hash code value for this object.Returns the value of themagnituderecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.enchantment.effect.EnchantmentEntityEffect
applyMethods inherited from interface net.minecraft.enchantment.effect.EnchantmentLocationBasedEffect
remove
-
Field Details
-
direction
The field for thedirectionrecord component. -
coordinateScale
The field for thecoordinateScalerecord component. -
magnitude
The field for themagnituderecord component. -
CODEC
- Mappings:
Namespace Name Mixin selector named CODECLnet/minecraft/enchantment/effect/entity/ApplyImpulseEnchantmentEffect;CODEC:Lcom/mojang/serialization/MapCodec;intermediary field_63422Lnet/minecraft/class_12129;field_63422:Lcom/mojang/serialization/MapCodec;official aLdrl;a:Lcom/mojang/serialization/MapCodec;
-
-
Constructor Details
-
ApplyImpulseEnchantmentEffect
public ApplyImpulseEnchantmentEffect(Vec3d direction, Vec3d coordinateScale, EnchantmentLevelBasedValue magnitude) Creates an instance of aApplyImpulseEnchantmentEffectrecord class.- Parameters:
direction- the value for thedirectionrecord componentcoordinateScale- the value for thecoordinateScalerecord componentmagnitude- the value for themagnituderecord component
-
-
Method Details
-
apply
public void apply(ServerWorld world, int level, EnchantmentEffectContext context, Entity user, Vec3d pos) - Specified by:
applyin interfaceEnchantmentEntityEffect- Mappings:
Namespace Name Mixin selector named applyLnet/minecraft/enchantment/effect/EnchantmentEntityEffect;apply(Lnet/minecraft/server/world/ServerWorld;ILnet/minecraft/enchantment/EnchantmentEffectContext;Lnet/minecraft/entity/Entity;Lnet/minecraft/util/math/Vec3d;)Vintermediary method_60220Lnet/minecraft/class_9721;method_60220(Lnet/minecraft/class_3218;ILnet/minecraft/class_9699;Lnet/minecraft/class_1297;Lnet/minecraft/class_243;)Vofficial aLdrr;a(Laxl;ILdqy;Lcgd;Lfrd;)V
-
getCodec
- Specified by:
getCodecin interfaceEnchantmentEntityEffect- Specified by:
getCodecin interfaceEnchantmentLocationBasedEffect- Mappings:
Namespace Name Mixin selector named getCodecLnet/minecraft/enchantment/effect/EnchantmentLocationBasedEffect;getCodec()Lcom/mojang/serialization/MapCodec;intermediary method_60219Lnet/minecraft/class_9722;method_60219()Lcom/mojang/serialization/MapCodec;official aLdrs;a()Lcom/mojang/serialization/MapCodec;
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
direction
Returns the value of thedirectionrecord component.- Returns:
- the value of the
directionrecord component
-
coordinateScale
Returns the value of thecoordinateScalerecord component.- Returns:
- the value of the
coordinateScalerecord component
-
magnitude
Returns the value of themagnituderecord component.- Returns:
- the value of the
magnituderecord component
-