Record Class DensityFunctions.Noise
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.DensityFunctions.Noise
- All Implemented Interfaces:
DensityFunction
,DensityFunction.SimpleFunction
- Enclosing class:
- DensityFunctions
protected static record DensityFunctions.Noise(Holder<NormalNoise.NoiseParameters> noiseData, @Nullable NormalNoise noise, double xzScale, double yScale)
extends Record
implements DensityFunction.SimpleFunction
-
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.Noise>
static final com.mojang.serialization.MapCodec<DensityFunctions.Noise>
private final NormalNoise
The field for thenoise
record component.private final Holder<NormalNoise.NoiseParameters>
The field for thenoiseData
record component.private final double
The field for thexzScale
record component.private final double
The field for theyScale
record component.Fields inherited from interface net.minecraft.world.level.levelgen.DensityFunction
DIRECT_CODEC, HOLDER_HELPER_CODEC
-
Constructor Summary
ModifierConstructorDescriptionprotected
Noise
(Holder<NormalNoise.NoiseParameters> noiseData, NormalNoise noise, double xzScale, double yScale) Creates an instance of aNoise
record class. -
Method Summary
Modifier and TypeMethodDescriptioncom.mojang.serialization.Codec<? extends DensityFunction>
codec()
double
compute
(DensityFunction.FunctionContext p_208800_) static DensityFunctions.Noise
createUnseeded
(Holder<NormalNoise.NoiseParameters> p_208802_, double p_208803_, double p_208804_) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.double
maxValue()
double
minValue()
noise()
Returns the value of thenoise
record component.Returns the value of thenoiseData
record component.final String
toString()
Returns a string representation of this record class.double
xzScale()
Returns the value of thexzScale
record component.double
yScale()
Returns the value of theyScale
record component.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.DensityFunction.SimpleFunction
fillArray, mapAll
-
Field Details
-
noiseData
The field for thenoiseData
record component. -
noise
The field for thenoise
record component. -
xzScale
private final double xzScaleThe field for thexzScale
record component. -
yScale
private final double yScaleThe field for theyScale
record component. -
DATA_CODEC
-
CODEC
-
-
Constructor Details
-
Noise
protected Noise(Holder<NormalNoise.NoiseParameters> noiseData, @Nullable NormalNoise noise, double xzScale, double yScale) Creates an instance of aNoise
record class.- Parameters:
noiseData
- the value for thenoiseData
record componentnoise
- the value for thenoise
record componentxzScale
- the value for thexzScale
record componentyScale
- the value for theyScale
record component
-
-
Method Details
-
createUnseeded
public static DensityFunctions.Noise createUnseeded(Holder<NormalNoise.NoiseParameters> p_208802_, @Deprecated double p_208803_, double p_208804_) -
compute
- Specified by:
compute
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
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
noiseData
Returns the value of thenoiseData
record component.- Returns:
- the value of the
noiseData
record component
-
noise
Returns the value of thenoise
record component.- Returns:
- the value of the
noise
record component
-
xzScale
public double xzScale()Returns the value of thexzScale
record component.- Returns:
- the value of the
xzScale
record component
-
yScale
public double yScale()Returns the value of theyScale
record component.- Returns:
- the value of the
yScale
record component
-