Record Class SimpleBlockFeature
java.lang.Object
java.lang.Record
net.minecraft.world.level.levelgen.feature.SimpleBlockFeature
- All Implemented Interfaces:
Feature
public record SimpleBlockFeature(Holder<BlockStateProvider> toPlace, boolean scheduleTick)
extends Record
implements Feature
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec<SimpleBlockFeature> private final booleanThe field for thescheduleTickrecord component.private final Holder<BlockStateProvider> The field for thetoPlacerecord component.Fields inherited from interface Feature
DIRECT_CODEC, LIST_CODEC -
Constructor Summary
ConstructorsConstructorDescriptionSimpleBlockFeature(Holder<BlockStateProvider> toPlace) SimpleBlockFeature(Holder<BlockStateProvider> toPlace, boolean scheduleTick) Creates an instance of aSimpleBlockFeaturerecord class.SimpleBlockFeature(BlockStateProvider toPlace) -
Method Summary
Modifier and TypeMethodDescriptioncom.mojang.serialization.MapCodec<SimpleBlockFeature> codec()final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanplace(WorldGenLevel level, ChunkGenerator chunkGenerator, RandomSource random, BlockPos origin) booleanReturns the value of thescheduleTickrecord component.toPlace()Returns the value of thetoPlacerecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from interface Feature
getSubFeatures, markAboveForPostProcessing, safeSetBlock, setBlock
-
Field Details
-
toPlace
The field for thetoPlacerecord component. -
scheduleTick
private final boolean scheduleTickThe field for thescheduleTickrecord component. -
CODEC
-
-
Constructor Details
-
SimpleBlockFeature
-
SimpleBlockFeature
-
SimpleBlockFeature
Creates an instance of aSimpleBlockFeaturerecord class.- Parameters:
toPlace- the value for thetoPlacerecord componentscheduleTick- the value for thescheduleTickrecord component
-
-
Method Details
-
codec
-
place
public boolean place(WorldGenLevel level, ChunkGenerator chunkGenerator, RandomSource random, BlockPos origin) -
toString
-
hashCode
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
toPlace
Returns the value of thetoPlacerecord component.- Returns:
- the value of the
toPlacerecord component
-
scheduleTick
public boolean scheduleTick()Returns the value of thescheduleTickrecord component.- Returns:
- the value of the
scheduleTickrecord component
-