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 thedelegates
record component. -
Constructor Summary
ConstructorsConstructorDescriptionMultiple
(VertexConsumer[] delegates) Creates an instance of aMultiple
record class. -
Method Summary
Modifier and TypeMethodDescriptionaddVertex
(float pX, float pY, float pZ) void
addVertex
(float pX, float pY, float pZ, int pColor, float pU, float pV, int pPackedOverlay, int pPackedLight, float pNormalX, float pNormalY, float pNormalZ) Returns the value of thedelegates
record component.final boolean
Indicates whether some other object is "equal to" this one.private void
forEach
(Consumer<VertexConsumer> pAction) final int
hashCode()
Returns a hash code value for this object.setColor
(int pRed, int pGreen, int pBlue, int pAlpha) setNormal
(float pNormalX, float pNormalY, float pNormalZ) setUv
(float pU, float pV) setUv1
(int pU, int pV) setUv2
(int pU, int pV) final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.neoforged.neoforge.client.extensions.IVertexConsumerExtension
applyBakedLighting, applyBakedNormals, misc, putBulkData
Methods inherited from interface com.mojang.blaze3d.vertex.VertexConsumer
addVertex, addVertex, addVertex, addVertex, addVertexWith2DPose, putBulkData, putBulkData, setColor, setColor, setLight, setNormal, setNormal, setOverlay, setWhiteAlpha
-
Field Details
-
delegates
The field for thedelegates
record component.
-
-
Constructor Details
-
Multiple
Multiple(VertexConsumer[] delegates) Creates an instance of aMultiple
record class.- Parameters:
delegates
- the value for thedelegates
record component
-
-
Method Details
-
forEach
-
addVertex
- Specified by:
addVertex
in interfaceVertexConsumer
-
setColor
- Specified by:
setColor
in interfaceVertexConsumer
-
setUv
- Specified by:
setUv
in interfaceVertexConsumer
-
setUv1
- Specified by:
setUv1
in interfaceVertexConsumer
-
setUv2
- Specified by:
setUv2
in interfaceVertexConsumer
-
setNormal
- Specified by:
setNormal
in interfaceVertexConsumer
-
addVertex
public void addVertex(float pX, float pY, float pZ, int pColor, float pU, float pV, int pPackedOverlay, int pPackedLight, float pNormalX, float pNormalY, float pNormalZ) - Specified by:
addVertex
in 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 thedelegates
record component.- Returns:
- the value of the
delegates
record component
-