Record Class DustOption
java.lang.Object
java.lang.Record
net.minestom.server.world.biomes.particle.DustOption
- Record Components:
red- can between 0 and 1 and is divided by 255green- can between 0 and 1 and is divided by 255blue- can between 0 and 1 and is divided by 255scale- can between 0.01 to 4
- All Implemented Interfaces:
BiomeOption
@Experimental
public record DustOption(float red, float green, float blue, float scale)
extends Record
implements BiomeOption
Particle effect which used based on the color values.
-
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.@NotNull ParticlegetType()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.@NotNull org.jglrxavpok.hephaistos.nbt.NBTCompoundtoNbt()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.
-
-
Method Details
-
toNbt
@NotNull public @NotNull org.jglrxavpok.hephaistos.nbt.NBTCompound toNbt()- Specified by:
toNbtin interfaceBiomeOption
-
getType
- Specified by:
getTypein interfaceBiomeOption
-
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
-