Record Class BlockStateModelLoader.ModelGroupKey
java.lang.Object
java.lang.Record
net.minecraft.client.resources.model.BlockStateModelLoader.ModelGroupKey
- Enclosing class:
BlockStateModelLoader
static record BlockStateModelLoader.ModelGroupKey(List<UnbakedModel> models, List<Object> coloringValues)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe field for thecoloringValuesrecord component.private final List<UnbakedModel> The field for themodelsrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionModelGroupKey(List<UnbakedModel> models, List<Object> coloringValues) Creates an instance of aModelGroupKeyrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecoloringValuesrecord component.create(BlockState p_352381_, MultiPart p_352248_, Collection<Property<?>> p_352227_) create(BlockState p_352440_, UnbakedModel p_352383_, Collection<Property<?>> p_352085_) final booleanIndicates whether some other object is "equal to" this one.getColoringValues(BlockState p_352214_, Collection<Property<?>> p_352157_) final inthashCode()Returns a hash code value for this object.models()Returns the value of themodelsrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
models
The field for themodelsrecord component. -
coloringValues
The field for thecoloringValuesrecord component.
-
-
Constructor Details
-
ModelGroupKey
ModelGroupKey(List<UnbakedModel> models, List<Object> coloringValues) Creates an instance of aModelGroupKeyrecord class.- Parameters:
models- the value for themodelsrecord componentcoloringValues- the value for thecoloringValuesrecord component
-
-
Method Details
-
create
public static BlockStateModelLoader.ModelGroupKey create(BlockState p_352381_, MultiPart p_352248_, Collection<Property<?>> p_352227_) -
create
public static BlockStateModelLoader.ModelGroupKey create(BlockState p_352440_, UnbakedModel p_352383_, Collection<Property<?>> p_352085_) -
getColoringValues
private static List<Object> getColoringValues(BlockState p_352214_, Collection<Property<?>> p_352157_) -
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). -
models
Returns the value of themodelsrecord component.- Returns:
- the value of the
modelsrecord component
-
coloringValues
Returns the value of thecoloringValuesrecord component.- Returns:
- the value of the
coloringValuesrecord component
-