Record Class ItemModelFacade.Unbaked
java.lang.Object
java.lang.Record
org.cyclops.integrateddynamics.core.client.model.ItemModelFacade.Unbaked
- All Implemented Interfaces:
net.minecraft.client.renderer.item.ItemModel.Unbaked
,net.minecraft.client.resources.model.ResolvableModel
- Enclosing class:
ItemModelFacade
public static record ItemModelFacade.Unbaked(net.minecraft.resources.ResourceLocation modelEmpty)
extends Record
implements net.minecraft.client.renderer.item.ItemModel.Unbaked
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.client.resources.model.ResolvableModel
net.minecraft.client.resources.model.ResolvableModel.Resolver
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.MapCodec
<ItemModelFacade.Unbaked> -
Constructor Summary
ConstructorsConstructorDescriptionUnbaked
(net.minecraft.resources.ResourceLocation modelEmpty) Creates an instance of aUnbaked
record class. -
Method Summary
Modifier and TypeMethodDescriptionnet.minecraft.client.renderer.item.ItemModel
bake
(net.minecraft.client.renderer.item.ItemModel.BakingContext bakingContext) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.net.minecraft.resources.ResourceLocation
Returns the value of themodelEmpty
record component.void
resolveDependencies
(net.minecraft.client.resources.model.ResolvableModel.Resolver resolver) final String
toString()
Returns a string representation of this record class.com.mojang.serialization.MapCodec
<ItemModelFacade.Unbaked> type()
-
Field Details
-
MAP_CODEC
-
-
Constructor Details
-
Unbaked
public Unbaked(net.minecraft.resources.ResourceLocation modelEmpty) Creates an instance of aUnbaked
record class.- Parameters:
modelEmpty
- the value for themodelEmpty
record component
-
-
Method Details
-
type
- Specified by:
type
in interfacenet.minecraft.client.renderer.item.ItemModel.Unbaked
-
bake
public net.minecraft.client.renderer.item.ItemModel bake(net.minecraft.client.renderer.item.ItemModel.BakingContext bakingContext) - Specified by:
bake
in interfacenet.minecraft.client.renderer.item.ItemModel.Unbaked
-
resolveDependencies
public void resolveDependencies(net.minecraft.client.resources.model.ResolvableModel.Resolver resolver) - Specified by:
resolveDependencies
in interfacenet.minecraft.client.resources.model.ResolvableModel
-
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)
. -
modelEmpty
public net.minecraft.resources.ResourceLocation modelEmpty()Returns the value of themodelEmpty
record component.- Returns:
- the value of the
modelEmpty
record component
-