Record Class OutputLayer
java.lang.Object
java.lang.Record
foundry.veil.api.client.render.rendertype.layer.OutputLayer
- All Implemented Interfaces:
RenderTypeLayer
public record OutputLayer(LayerTemplateValue<net.minecraft.resources.ResourceLocation> framebufferId)
extends Record
implements RenderTypeLayer
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionOutputLayer(LayerTemplateValue<net.minecraft.resources.ResourceLocation> framebufferId) Creates an instance of aOutputLayerrecord class. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddShard(VeilRenderTypeBuilder builder, Object... params) final booleanIndicates whether some other object is "equal to" this one.LayerTemplateValue<net.minecraft.resources.ResourceLocation> Returns the value of theframebufferIdrecord component.getType()final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
CODEC
-
-
Constructor Details
-
OutputLayer
Creates an instance of aOutputLayerrecord class.- Parameters:
framebufferId- the value for theframebufferIdrecord component
-
-
Method Details
-
addShard
- Specified by:
addShardin interfaceRenderTypeLayer
-
getType
- Specified by:
getTypein interfaceRenderTypeLayer
-
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). -
framebufferId
Returns the value of theframebufferIdrecord component.- Returns:
- the value of the
framebufferIdrecord component
-