Package net.minestom.server.world.biome
Record Class BiomeParticle.DustOption
java.lang.Object
java.lang.Record
net.minestom.server.world.biome.BiomeParticle.DustOption
- All Implemented Interfaces:
BiomeParticle.Option
- Enclosing class:
BiomeParticle
public static record BiomeParticle.DustOption(float red, float green, float blue, float scale)
extends Record
implements BiomeParticle.Option
-
Constructor Summary
ConstructorsConstructorDescriptionDustOption(float red, float green, float blue, float scale) Creates an instance of aDustOptionrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfloatblue()Returns the value of thebluerecord component.final booleanIndicates whether some other object is "equal to" this one.floatgreen()Returns the value of thegreenrecord component.final inthashCode()Returns a hash code value for this object.floatred()Returns the value of theredrecord component.floatscale()Returns the value of thescalerecord component.net.kyori.adventure.nbt.CompoundBinaryTagtoNbt()final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
DustOption
public DustOption(float red, float green, float blue, float scale) Creates an instance of aDustOptionrecord class.- Parameters:
red- the value for theredrecord componentgreen- the value for thegreenrecord componentblue- the value for thebluerecord componentscale- the value for thescalerecord component
-
-
Method Details
-
toNbt
public net.kyori.adventure.nbt.CompoundBinaryTag toNbt()- Specified by:
toNbtin interfaceBiomeParticle.Option
-
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 with '=='. -
red
public float red()Returns the value of theredrecord component.- Returns:
- the value of the
redrecord component
-
green
public float green()Returns the value of thegreenrecord component.- Returns:
- the value of the
greenrecord component
-
blue
public float blue()Returns the value of thebluerecord component.- Returns:
- the value of the
bluerecord component
-
scale
public float scale()Returns the value of thescalerecord component.- Returns:
- the value of the
scalerecord component
-