Record Class DensityFunction.Noise
java.lang.Object
java.lang.Record
net.minecraft.world.gen.densityfunction.DensityFunction.Noise
- Record Components:
noiseData-noise-
- Enclosing interface:
DensityFunction
public static record DensityFunction.Noise(RegistryEntry<DoublePerlinNoiseSampler.NoiseParameters> noiseData, @Nullable DoublePerlinNoiseSampler noise)
extends Record
- Mappings:
Namespace Name intermediary net/minecraft/class_6910$class_7270official dha$cnamed net/minecraft/world/gen/densityfunction/DensityFunction$Noiseintermediary comp_662official bnamed noiseDataintermediary comp_663official cnamed noise
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<DensityFunction.Noise>private final @Nullable DoublePerlinNoiseSamplerThe field for thenoiserecord component.private final RegistryEntry<DoublePerlinNoiseSampler.NoiseParameters>The field for thenoiseDatarecord component. -
Constructor Summary
ConstructorsConstructorDescriptionNoise(RegistryEntry<DoublePerlinNoiseSampler.NoiseParameters> registryEntry, @Nullable DoublePerlinNoiseSampler doublePerlinNoiseSampler) -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.doublefinal inthashCode()Returns a hash code value for this object.noise()Returns the value of thenoiserecord component.Returns the value of thenoiseDatarecord component.doublesample(double x, double y, double z) final StringtoString()Returns a string representation of this record class.
-
Field Details
-
noiseData
The field for thenoiseDatarecord component. -
noise
The field for thenoiserecord component. -
CODEC
- Mappings:
Namespace Name Mixin selector intermediary field_38248Lnet/minecraft/class_6910$class_7270;field_38248:Lcom/mojang/serialization/Codec;official aLdha$c;a:Lcom/mojang/serialization/Codec;named CODECLnet/minecraft/world/gen/densityfunction/DensityFunction$Noise;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
Noise
- Mappings:
Namespace Name Mixin selector intermediary <init>Lnet/minecraft/class_6910$class_7270;<init>(Lnet/minecraft/class_6880;)Vofficial <init>Ldha$c;<init>(Lhe;)Vnamed <init>Lnet/minecraft/world/gen/densityfunction/DensityFunction$Noise;<init>(Lnet/minecraft/registry/entry/RegistryEntry;)V
-
Noise
public Noise(RegistryEntry<DoublePerlinNoiseSampler.NoiseParameters> registryEntry, @Nullable @Nullable DoublePerlinNoiseSampler doublePerlinNoiseSampler)
-
-
Method Details
-
sample
public double sample(double x, double y, double z) - Mappings:
Namespace Name Mixin selector intermediary method_42356Lnet/minecraft/class_6910$class_7270;method_42356(DDD)Dofficial aLdha$c;a(DDD)Dnamed sampleLnet/minecraft/world/gen/densityfunction/DensityFunction$Noise;sample(DDD)D
-
getMaxValue
public double getMaxValue()- Mappings:
Namespace Name Mixin selector intermediary method_42355Lnet/minecraft/class_6910$class_7270;method_42355()Dofficial aLdha$c;a()Dnamed getMaxValueLnet/minecraft/world/gen/densityfunction/DensityFunction$Noise;getMaxValue()D
-
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). -
noiseData
Returns the value of thenoiseDatarecord component.- Returns:
- the value of the
noiseDatarecord component
-
noise
Returns the value of thenoiserecord component.- Returns:
- the value of the
noiserecord component
-