Record Class EmitterShapeSettings

java.lang.Object
java.lang.Record
foundry.veil.api.quasar.data.EmitterShapeSettings

public record EmitterShapeSettings(EmitterShape shape, org.joml.Vector3fc dimensions, org.joml.Vector3fc rotation, boolean fromSurface) extends Record
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final com.mojang.serialization.Codec<net.minecraft.core.Holder<EmitterShapeSettings>>
     
    static final com.mojang.serialization.Codec<EmitterShapeSettings>
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    EmitterShapeSettings(EmitterShape shape, org.joml.Vector3fc dimensions, org.joml.Vector3fc rotation, boolean fromSurface)
    Creates an instance of a EmitterShapeSettings record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.joml.Vector3fc
    Returns the value of the dimensions record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    boolean
    Returns the value of the fromSurface record component.
    org.joml.Vector3d
    getPos(net.minecraft.util.RandomSource randomSource, org.joml.Vector3dc pos)
     
    @Nullable net.minecraft.resources.ResourceLocation
     
    final int
    Returns a hash code value for this object.
    org.joml.Vector3fc
    Returns the value of the rotation record component.
    Returns the value of the shape record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • DIRECT_CODEC

      public static final com.mojang.serialization.Codec<EmitterShapeSettings> DIRECT_CODEC
    • CODEC

      public static final com.mojang.serialization.Codec<net.minecraft.core.Holder<EmitterShapeSettings>> CODEC
  • Constructor Details

    • EmitterShapeSettings

      public EmitterShapeSettings(EmitterShape shape, org.joml.Vector3fc dimensions, org.joml.Vector3fc rotation, boolean fromSurface)
      Creates an instance of a EmitterShapeSettings record class.
      Parameters:
      shape - the value for the shape record component
      dimensions - the value for the dimensions record component
      rotation - the value for the rotation record component
      fromSurface - the value for the fromSurface record component
  • Method Details

    • getPos

      public org.joml.Vector3d getPos(net.minecraft.util.RandomSource randomSource, org.joml.Vector3dc pos)
    • getRegistryId

      @Nullable public @Nullable net.minecraft.resources.ResourceLocation getRegistryId()
    • 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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      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.
    • shape

      public EmitterShape shape()
      Returns the value of the shape record component.
      Returns:
      the value of the shape record component
    • dimensions

      public org.joml.Vector3fc dimensions()
      Returns the value of the dimensions record component.
      Returns:
      the value of the dimensions record component
    • rotation

      public org.joml.Vector3fc rotation()
      Returns the value of the rotation record component.
      Returns:
      the value of the rotation record component
    • fromSurface

      public boolean fromSurface()
      Returns the value of the fromSurface record component.
      Returns:
      the value of the fromSurface record component