Package net.minecraft.world.gen.feature
Record Class TwistingVinesFeatureConfig
java.lang.Object
java.lang.Record
net.minecraft.world.gen.feature.TwistingVinesFeatureConfig
- Record Components:
- spreadWidth-
- spreadHeight-
- maxHeight-
- All Implemented Interfaces:
- FeatureConfig
public record TwistingVinesFeatureConfig(int spreadWidth, int spreadHeight, int maxHeight)
extends Record
implements FeatureConfig
- Mappings:
- Namespace - Name - official - dgu- intermediary - net/minecraft/class_6790- named - net/minecraft/world/gen/feature/TwistingVinesFeatureConfig- official - b- intermediary - comp_287- named - spreadWidth- official - c- intermediary - comp_288- named - spreadHeight- official - d- intermediary - comp_289- named - maxHeight
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<TwistingVinesFeatureConfig>private final intThe field for themaxHeightrecord component.private final intThe field for thespreadHeightrecord component.private final intThe field for thespreadWidthrecord component.Fields inherited from interface net.minecraft.world.gen.feature.FeatureConfigDEFAULT
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intReturns the value of themaxHeightrecord component.intReturns the value of thespreadHeightrecord component.intReturns the value of thespreadWidthrecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.world.gen.feature.FeatureConfiggetDecoratedFeatures
- 
Field Details- 
spreadWidthprivate final int spreadWidthThe field for thespreadWidthrecord component.
- 
spreadHeightprivate final int spreadHeightThe field for thespreadHeightrecord component.
- 
maxHeightprivate final int maxHeightThe field for themaxHeightrecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - official - a- Ldgu;a:Lcom/mojang/serialization/Codec;- intermediary - field_35710- Lnet/minecraft/class_6790;field_35710:Lcom/mojang/serialization/Codec;- named - CODEC- Lnet/minecraft/world/gen/feature/TwistingVinesFeatureConfig;CODEC:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
TwistingVinesFeatureConfigpublic TwistingVinesFeatureConfig(int int2, int int3, int int4) 
 
- 
- 
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 '=='.
- 
spreadWidthpublic int spreadWidth()Returns the value of thespreadWidthrecord component.- Returns:
- the value of the spreadWidthrecord component
 
- 
spreadHeightpublic int spreadHeight()Returns the value of thespreadHeightrecord component.- Returns:
- the value of the spreadHeightrecord component
 
- 
maxHeightpublic int maxHeight()Returns the value of themaxHeightrecord component.- Returns:
- the value of the maxHeightrecord component
 
 
-