Package net.minecraft.world.level.biome
Record Class Climate.Sampler
java.lang.Object
java.lang.Record
net.minecraft.world.level.biome.Climate.Sampler
- Enclosing class:
- Climate
public static record Climate.Sampler(DensityFunction temperature, DensityFunction humidity, DensityFunction continentalness, DensityFunction erosion, DensityFunction depth, DensityFunction weirdness, List<Climate.ParameterPoint> spawnTarget)
extends Record
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final DensityFunctionThe field for thecontinentalnessrecord component.private final DensityFunctionThe field for thedepthrecord component.private final DensityFunctionThe field for theerosionrecord component.private final DensityFunctionThe field for thehumidityrecord component.private final List<Climate.ParameterPoint>The field for thespawnTargetrecord component.private final DensityFunctionThe field for thetemperaturerecord component.private final DensityFunctionThe field for theweirdnessrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionSampler(DensityFunction temperature, DensityFunction humidity, DensityFunction continentalness, DensityFunction erosion, DensityFunction depth, DensityFunction weirdness, List<Climate.ParameterPoint> spawnTarget) Creates an instance of aSamplerrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the value of thecontinentalnessrecord component.depth()Returns the value of thedepthrecord component.final booleanIndicates whether some other object is "equal to" this one.erosion()Returns the value of theerosionrecord component.final inthashCode()Returns a hash code value for this object.humidity()Returns the value of thehumidityrecord component.sample(int p_186975_, int p_186976_, int p_186977_) Returns the value of thespawnTargetrecord component.Returns the value of thetemperaturerecord component.final StringtoString()Returns a string representation of this record class.Returns the value of theweirdnessrecord component.
- 
Field Details- 
temperatureThe field for thetemperaturerecord component.
- 
humidityThe field for thehumidityrecord component.
- 
continentalnessThe field for thecontinentalnessrecord component.
- 
erosionThe field for theerosionrecord component.
- 
depthThe field for thedepthrecord component.
- 
weirdnessThe field for theweirdnessrecord component.
- 
spawnTargetThe field for thespawnTargetrecord component.
 
- 
- 
Constructor Details- 
Samplerpublic Sampler(DensityFunction temperature, DensityFunction humidity, DensityFunction continentalness, DensityFunction erosion, DensityFunction depth, DensityFunction weirdness, List<Climate.ParameterPoint> spawnTarget) Creates an instance of aSamplerrecord class.- Parameters:
- temperature- the value for the- temperaturerecord component
- humidity- the value for the- humidityrecord component
- continentalness- the value for the- continentalnessrecord component
- erosion- the value for the- erosionrecord component
- depth- the value for the- depthrecord component
- weirdness- the value for the- weirdnessrecord component
- spawnTarget- the value for the- spawnTargetrecord component
 
 
- 
- 
Method Details- 
sample
- 
findSpawnPosition
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
temperatureReturns the value of thetemperaturerecord component.- Returns:
- the value of the temperaturerecord component
 
- 
humidityReturns the value of thehumidityrecord component.- Returns:
- the value of the humidityrecord component
 
- 
continentalnessReturns the value of thecontinentalnessrecord component.- Returns:
- the value of the continentalnessrecord component
 
- 
erosionReturns the value of theerosionrecord component.- Returns:
- the value of the erosionrecord component
 
- 
depthReturns the value of thedepthrecord component.- Returns:
- the value of the depthrecord component
 
- 
weirdnessReturns the value of theweirdnessrecord component.- Returns:
- the value of the weirdnessrecord component
 
- 
spawnTargetReturns the value of thespawnTargetrecord component.- Returns:
- the value of the spawnTargetrecord component
 
 
-