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
Modifier and TypeFieldDescriptionThe field for thecoloringValues
record component.private final List
<UnbakedModel> The field for themodels
record component. -
Constructor Summary
ConstructorDescriptionModelGroupKey
(List<UnbakedModel> models, List<Object> coloringValues) Creates an instance of aModelGroupKey
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecoloringValues
record component.create
(BlockState p_344115_, MultiPart p_344686_, Collection<Property<?>> p_342621_) create
(BlockState p_342405_, UnbakedModel p_342829_, Collection<Property<?>> p_343727_) final boolean
Indicates whether some other object is "equal to" this one.getColoringValues
(BlockState p_344919_, Collection<Property<?>> p_343393_) final int
hashCode()
Returns a hash code value for this object.models()
Returns the value of themodels
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
models
The field for themodels
record component. -
coloringValues
The field for thecoloringValues
record component.
-
-
Constructor Details
-
ModelGroupKey
ModelGroupKey(List<UnbakedModel> models, List<Object> coloringValues) Creates an instance of aModelGroupKey
record class.- Parameters:
models
- the value for themodels
record componentcoloringValues
- the value for thecoloringValues
record component
-
-
Method Details
-
create
public static BlockStateModelLoader.ModelGroupKey create(BlockState p_344115_, MultiPart p_344686_, Collection<Property<?>> p_342621_) -
create
public static BlockStateModelLoader.ModelGroupKey create(BlockState p_342405_, UnbakedModel p_342829_, Collection<Property<?>> p_343727_) -
getColoringValues
private static List<Object> getColoringValues(BlockState p_344919_, Collection<Property<?>> p_343393_) -
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 themodels
record component.- Returns:
- the value of the
models
record component
-
coloringValues
Returns the value of thecoloringValues
record component.- Returns:
- the value of the
coloringValues
record component
-