Record Class MaterialRules.VerticalGradientMaterialCondition
java.lang.Object
java.lang.Record
net.minecraft.world.gen.surfacebuilder.MaterialRules.VerticalGradientMaterialCondition
- Record Components:
randomName
-trueAtAndBelow
-falseAtAndAbove
-
- All Implemented Interfaces:
Function<MaterialRules.MaterialRuleContext,
,MaterialRules.BooleanSupplier> MaterialRules.MaterialCondition
- Enclosing class:
MaterialRules
private static record MaterialRules.VerticalGradientMaterialCondition(Identifier randomName, YOffset trueAtAndBelow, YOffset falseAtAndAbove)
extends Record
implements MaterialRules.MaterialCondition
- Mappings:
Namespace Name official dph$y
intermediary net/minecraft/class_6686$class_6775
named net/minecraft/world/gen/surfacebuilder/MaterialRules$VerticalGradientMaterialCondition
official a
intermediary comp_263
named randomName
official c
intermediary comp_264
named trueAtAndBelow
official d
intermediary comp_265
named falseAtAndAbove
-
Field Summary
Modifier and TypeFieldDescription(package private) static final CodecHolder<MaterialRules.VerticalGradientMaterialCondition>
private final YOffset
The field for thefalseAtAndAbove
record component.private final Identifier
The field for therandomName
record component.private final YOffset
The field for thetrueAtAndBelow
record component. -
Constructor Summary
ConstructorDescriptionVerticalGradientMaterialCondition
(Identifier identifier, YOffset yOffset, YOffset yOffset2) -
Method Summary
Modifier and TypeMethodDescriptionapply
(MaterialRules.MaterialRuleContext materialRuleContext) CodecHolder<? extends MaterialRules.MaterialCondition>
codec()
final boolean
Indicates whether some other object is "equal to" this one.Returns the value of thefalseAtAndAbove
record component.final int
hashCode()
Returns a hash code value for this object.Returns the value of therandomName
record component.final String
toString()
Returns a string representation of this record class.Returns the value of thetrueAtAndBelow
record component.
-
Field Details
-
randomName
The field for therandomName
record component. -
trueAtAndBelow
The field for thetrueAtAndBelow
record component. -
falseAtAndAbove
The field for thefalseAtAndAbove
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official e
Ldph$y;e:Laui;
intermediary field_35626
Lnet/minecraft/class_6686$class_6775;field_35626:Lnet/minecraft/class_7243;
named CODEC
Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$VerticalGradientMaterialCondition;CODEC:Lnet/minecraft/util/dynamic/CodecHolder;
-
-
Constructor Details
-
VerticalGradientMaterialCondition
VerticalGradientMaterialCondition(Identifier identifier, YOffset yOffset, YOffset yOffset2)
-
-
Method Details
-
codec
- Specified by:
codec
in interfaceMaterialRules.MaterialCondition
- Mappings:
Namespace Name Mixin selector official a
Ldph$f;a()Laui;
intermediary method_39064
Lnet/minecraft/class_6686$class_6693;method_39064()Lnet/minecraft/class_7243;
named codec
Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$MaterialCondition;codec()Lnet/minecraft/util/dynamic/CodecHolder;
-
apply
- Specified by:
apply
in interfaceFunction<MaterialRules.MaterialRuleContext,
MaterialRules.BooleanSupplier> - Mappings:
Namespace Name Mixin selector official a
Ldph$y;a(Ldph$g;)Ldph$e;
intermediary method_39481
Lnet/minecraft/class_6686$class_6775;method_39481(Lnet/minecraft/class_6686$class_6694;)Lnet/minecraft/class_6686$class_6692;
named apply
Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$VerticalGradientMaterialCondition;apply(Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$MaterialRuleContext;)Lnet/minecraft/world/gen/surfacebuilder/MaterialRules$BooleanSupplier;
-
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)
. -
randomName
Returns the value of therandomName
record component.- Returns:
- the value of the
randomName
record component
-
trueAtAndBelow
Returns the value of thetrueAtAndBelow
record component.- Returns:
- the value of the
trueAtAndBelow
record component
-
falseAtAndAbove
Returns the value of thefalseAtAndAbove
record component.- Returns:
- the value of the
falseAtAndAbove
record component
-