Class RemappingVertexPipeline
java.lang.Object
net.neoforged.neoforge.client.model.pipeline.RemappingVertexPipeline
- All Implemented Interfaces:
VertexConsumer
,IVertexConsumerExtension
Vertex pipeline element that remaps incoming data to another format.
-
Field Summary
Modifier and TypeFieldDescriptionprivate final int[]
private static final int[]
private static final Set
<VertexFormatElement> private final int[][]
private final Map
<VertexFormatElement, Integer> private final org.joml.Vector3f
private final VertexConsumer
private final org.joml.Vector3f
private final VertexFormat
private final float[]
private final int[]
private final int[]
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionaddVertex
(float x, float y, float z) void
misc
(VertexFormatElement element, int... values) Consumes an unknownVertexFormatElement
as a raw int data array.setColor
(int r, int g, int b, int a) setNormal
(float x, float y, float z) setUv
(float u, float v) setUv1
(int u, int v) setUv2
(int u, int v) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.neoforged.neoforge.client.extensions.IVertexConsumerExtension
applyBakedLighting, applyBakedNormals, putBulkData
Methods inherited from interface com.mojang.blaze3d.vertex.VertexConsumer
addVertex, addVertex, addVertex, addVertex, addVertex, putBulkData, putBulkData, setColor, setColor, setLight, setNormal, setOverlay, setWhiteAlpha
-
Field Details
-
KNOWN_ELEMENTS
-
EMPTY_INT_ARRAY
private static final int[] EMPTY_INT_ARRAY -
parent
-
targetFormat
-
position
private final org.joml.Vector3f position -
normal
private final org.joml.Vector3f normal -
color
private final int[] color -
uv0
private final float[] uv0 -
uv1
private final int[] uv1 -
uv2
private final int[] uv2 -
miscElementIds
-
misc
private final int[][] misc
-
-
Constructor Details
-
RemappingVertexPipeline
-
-
Method Details
-
addVertex
- Specified by:
addVertex
in interfaceVertexConsumer
-
setNormal
- Specified by:
setNormal
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
-
misc
Description copied from interface:IVertexConsumerExtension
Consumes an unknownVertexFormatElement
as a raw int data array.If the consumer needs to store the data for later use, it must copy it. There are no guarantees on immutability.
- Specified by:
misc
in interfaceIVertexConsumerExtension
-
endVertex
public void endVertex()
-