Record Class ApplyEntityImpulse

java.lang.Object
java.lang.Record
net.minecraft.world.item.enchantment.effects.ApplyEntityImpulse
All Implemented Interfaces:
EnchantmentEntityEffect, EnchantmentLocationBasedEffect

public record ApplyEntityImpulse(Vec3 direction, Vec3 coordinateScale, LevelBasedValue magnitude) extends Record implements EnchantmentEntityEffect
  • Field Details

    • direction

      private final Vec3 direction
      The field for the direction record component.
    • coordinateScale

      private final Vec3 coordinateScale
      The field for the coordinateScale record component.
    • magnitude

      private final LevelBasedValue magnitude
      The field for the magnitude record component.
    • CODEC

      public static final com.mojang.serialization.MapCodec<ApplyEntityImpulse> CODEC
    • POST_IMPULSE_CONTEXT_RESET_GRACE_TIME_TICKS

      private static final int POST_IMPULSE_CONTEXT_RESET_GRACE_TIME_TICKS
      See Also:
  • Constructor Details

    • ApplyEntityImpulse

      public ApplyEntityImpulse(Vec3 direction, Vec3 coordinateScale, LevelBasedValue magnitude)
      Creates an instance of a ApplyEntityImpulse record class.
      Parameters:
      direction - the value for the direction record component
      coordinateScale - the value for the coordinateScale record component
      magnitude - the value for the magnitude record component
  • Method Details

    • apply

      public void apply(ServerLevel p_454879_, int p_454857_, EnchantedItemInUse p_455030_, Entity p_455129_, Vec3 p_455690_)
      Specified by:
      apply in interface EnchantmentEntityEffect
    • codec

      public com.mojang.serialization.MapCodec<ApplyEntityImpulse> codec()
      Specified by:
      codec in interface EnchantmentEntityEffect
      Specified by:
      codec in interface EnchantmentLocationBasedEffect
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • direction

      public Vec3 direction()
      Returns the value of the direction record component.
      Returns:
      the value of the direction record component
    • coordinateScale

      public Vec3 coordinateScale()
      Returns the value of the coordinateScale record component.
      Returns:
      the value of the coordinateScale record component
    • magnitude

      public LevelBasedValue magnitude()
      Returns the value of the magnitude record component.
      Returns:
      the value of the magnitude record component