Package net.minecraft.world.biome
Record Class SpawnSettings.SpawnDensity
java.lang.Object
java.lang.Record
net.minecraft.world.biome.SpawnSettings.SpawnDensity
- Record Components:
- gravityLimit-
- mass-
- Enclosing class:
- SpawnSettings
Embodies the density limit information of a type of entity in entity
 spawning logic. The density field is generated for all entities spawned
 than a specific type of entity.
- Mappings:
- Namespace - Name - named - net/minecraft/world/biome/SpawnSettings$SpawnDensity- intermediary - net/minecraft/class_5483$class_5265- official - dhx$b- named - gravityLimit- intermediary - comp_1307- official - b- named - mass- intermediary - comp_1308- official - c
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<SpawnSettings.SpawnDensity> private final doubleThe field for thegravityLimitrecord component.private final doubleThe field for themassrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionSpawnDensity(double gravityLimit, double mass) Creates an instance of aSpawnDensityrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.doubleRepresents the cap of gravity as inGravityField.calculate(BlockPos, double)for entity spawning.final inthashCode()Returns a hash code value for this object.doublemass()Represents the mass of each entity spawned.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
gravityLimitprivate final double gravityLimitThe field for thegravityLimitrecord component.
- 
massprivate final double massThe field for themassrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/world/biome/SpawnSettings$SpawnDensity;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_25820- Lnet/minecraft/class_5483$class_5265;field_25820:Lcom/mojang/serialization/Codec;- official - a- Ldhx$b;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
SpawnDensitypublic SpawnDensity(double gravityLimit, double mass) Creates an instance of aSpawnDensityrecord class.- Parameters:
- gravityLimit- the value for the- gravityLimitrecord component
- mass- the value for the- massrecord component
 
 
- 
- 
Method Details- 
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 with '=='.
- 
gravityLimitpublic double gravityLimit()Represents the cap of gravity as inGravityField.calculate(BlockPos, double)for entity spawning. If the cap is exceeded, the entity spawning attempt will skip.- Mappings:
- Namespace - Name - Mixin selector - named - gravityLimit- Lnet/minecraft/world/biome/SpawnSettings$SpawnDensity;gravityLimit()D- intermediary - comp_1307- Lnet/minecraft/class_5483$class_5265;comp_1307()D- official - a- Ldhx$b;a()D
 
- 
masspublic double mass()Represents the mass of each entity spawned. Will affect gravity calculation.- Mappings:
- Namespace - Name - Mixin selector - named - mass- Lnet/minecraft/world/biome/SpawnSettings$SpawnDensity;mass()D- intermediary - comp_1308- Lnet/minecraft/class_5483$class_5265;comp_1308()D- official - b- Ldhx$b;b()D
 
 
-