Record Class DensityFunctions.Slide
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.DensityFunctions.Slide
- All Implemented Interfaces:
DensityFunction
,DensityFunctions.TransformerWithContext
- Enclosing class:
- DensityFunctions
protected static record DensityFunctions.Slide(@Nullable NoiseSettings settings, DensityFunction input)
extends Record
implements DensityFunctions.TransformerWithContext
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.world.level.levelgen.DensityFunction
DensityFunction.ContextProvider, DensityFunction.FunctionContext, DensityFunction.SimpleFunction, DensityFunction.SinglePointContext, DensityFunction.Visitor
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<DensityFunctions.Slide>
private final DensityFunction
The field for theinput
record component.private final NoiseSettings
The field for thesettings
record component.Fields inherited from interface net.minecraft.world.level.levelgen.DensityFunction
DIRECT_CODEC, HOLDER_HELPER_CODEC
-
Constructor Summary
ModifierConstructorDescriptionprotected
Slide
(NoiseSettings settings, DensityFunction input) Creates an instance of aSlide
record class. -
Method Summary
Modifier and TypeMethodDescriptioncom.mojang.serialization.Codec<? extends DensityFunction>
codec()
final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.input()
Returns the value of theinput
record component.mapAll
(DensityFunction.Visitor p_208983_) double
maxValue()
double
minValue()
settings()
Returns the value of thesettings
record component.final String
toString()
Returns a string representation of this record class.double
transform
(DensityFunction.FunctionContext p_208980_, double p_208981_) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.world.level.levelgen.DensityFunction
abs, clamp, cube, halfNegative, quarterNegative, square, squeeze
Methods inherited from interface net.minecraft.world.level.levelgen.DensityFunctions.TransformerWithContext
compute, fillArray
-
Field Details
-
settings
The field for thesettings
record component. -
input
The field for theinput
record component. -
CODEC
-
-
Constructor Details
-
Slide
Creates an instance of aSlide
record class.- Parameters:
settings
- the value for thesettings
record componentinput
- the value for theinput
record component
-
-
Method Details
-
transform
- Specified by:
transform
in interfaceDensityFunctions.TransformerWithContext
-
mapAll
- Specified by:
mapAll
in interfaceDensityFunction
-
minValue
public double minValue()- Specified by:
minValue
in interfaceDensityFunction
-
maxValue
public double maxValue()- Specified by:
maxValue
in interfaceDensityFunction
-
codec
- Specified by:
codec
in interfaceDensityFunction
-
input
Returns the value of theinput
record component.- Specified by:
input
in interfaceDensityFunctions.TransformerWithContext
- Returns:
- the value of the
input
record component
-
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 withObjects::equals(Object,Object)
. -
settings
Returns the value of thesettings
record component.- Returns:
- the value of the
settings
record component
-