This version of Unity is unsupported.

MeshWriteData

class in UnityEngine.UIElements

/

Implemented in:UnityEngine.UIElementsModule

Description

A class that represents the vertex and index data allocated for drawing the content of a VisualElement.

You can use this object to fill the values for the vertices and indices only during a callback to the VisualElement.generateVisualContent delegate. Do not store the passed MeshWriteData outside the scope of VisualElement.generateVisualContent as Unity could recycle it for other callbacks.

Properties

indexCount The number of indices successfully allocated for VisualElement content drawing.
uvRegion A rectangle describing the UV region holding the texture passed to MeshGenerationContext.Allocate.
vertexCount The number of vertices successfully allocated for VisualElement content drawing.

Public Methods

SetAllIndices Fills the values of the allocated indices with values copied directly from an array. Each 3 consecutive indices form a single triangle.
SetAllVertices Fills the values of the allocated vertices with values copied directly from an array. When this method is called, it is not possible to use SetNextVertex to fill the allocated vertices array.
SetNextIndex Assigns the value of the next index of the allocated indices list.
SetNextVertex Assigns the value of the next vertex of the allocated vertices list.