Package com.mojang.blaze3d.vertex
Record Class VertexMultiConsumer.Multiple
java.lang.Object
java.lang.Record
com.mojang.blaze3d.vertex.VertexMultiConsumer.Multiple
- All Implemented Interfaces:
VertexConsumer,IVertexConsumerExtension
- Enclosing class:
VertexMultiConsumer
static record VertexMultiConsumer.Multiple(VertexConsumer[] delegates)
extends Record
implements VertexConsumer
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final VertexConsumer[]The field for thedelegatesrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionMultiple(VertexConsumer[] delegates) Creates an instance of aMultiplerecord class. -
Method Summary
Modifier and TypeMethodDescriptionaddVertex(float x, float y, float z) voidaddVertex(float x, float y, float z, int color, float u, float v, int packedOverlay, int packedLight, float normalX, float normalY, float normalZ) Returns the value of thedelegatesrecord component.final booleanIndicates whether some other object is "equal to" this one.private voidforEach(Consumer<VertexConsumer> action) final inthashCode()Returns a hash code value for this object.setColor(int red, int green, int blue, int alpha) setNormal(float normalX, float normalY, float normalZ) setUv(float u, float v) setUv1(int u, int v) setUv2(int u, int v) final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.neoforged.neoforge.client.extensions.IVertexConsumerExtension
applyBakedLighting, applyBakedNormals, misc, putBulkDataMethods inherited from interface com.mojang.blaze3d.vertex.VertexConsumer
addVertex, addVertex, addVertex, addVertex, putBulkData, putBulkData, setColor, setColor, setLight, setNormal, setOverlay, setWhiteAlpha
-
Field Details
-
delegates
The field for thedelegatesrecord component.
-
-
Constructor Details
-
Multiple
Multiple(VertexConsumer[] delegates) Creates an instance of aMultiplerecord class.- Parameters:
delegates- the value for thedelegatesrecord component
-
-
Method Details
-
forEach
-
addVertex
- Specified by:
addVertexin interfaceVertexConsumer
-
setColor
- Specified by:
setColorin interfaceVertexConsumer
-
setUv
- Specified by:
setUvin interfaceVertexConsumer
-
setUv1
- Specified by:
setUv1in interfaceVertexConsumer
-
setUv2
- Specified by:
setUv2in interfaceVertexConsumer
-
setNormal
- Specified by:
setNormalin interfaceVertexConsumer
-
addVertex
public void addVertex(float x, float y, float z, int color, float u, float v, int packedOverlay, int packedLight, float normalX, float normalY, float normalZ) - Specified by:
addVertexin interfaceVertexConsumer
-
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). -
delegates
Returns the value of thedelegatesrecord component.- Returns:
- the value of the
delegatesrecord component
-