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
ConstructorDescriptionDustOption
(float red, float green, float blue, float scale) Creates an instance of aDustOption
record class. -
Method Summary
Modifier and TypeMethodDescriptionfloat
blue()
Returns the value of theblue
record component.final boolean
Indicates whether some other object is "equal to" this one.@NotNull Particle
getType()
float
green()
Returns the value of thegreen
record component.final int
hashCode()
Returns a hash code value for this object.float
red()
Returns the value of thered
record component.float
scale()
Returns the value of thescale
record component.@NotNull org.jglrxavpok.hephaistos.nbt.NBTCompound
toNbt()
final String
toString()
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 aDustOption
record class.
-
-
Method Details
-
toNbt
@NotNull public @NotNull org.jglrxavpok.hephaistos.nbt.NBTCompound toNbt()- Specified by:
toNbt
in interfaceBiomeOption
-
getType
- Specified by:
getType
in 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 thered
record component.- Returns:
- the value of the
red
record component
-
green
public float green()Returns the value of thegreen
record component.- Returns:
- the value of the
green
record component
-
blue
public float blue()Returns the value of theblue
record component.- Returns:
- the value of the
blue
record component
-
scale
public float scale()Returns the value of thescale
record component.- Returns:
- the value of the
scale
record component
-