Mesh Info
Overview
Extracts and exposes various properties and raw data from a mesh. This is an essential diagnostic and data-gathering node used to drive other parameters within a graph based on mesh complexity or geometry.
Inputs
| Name | Type | Description |
|---|---|---|
| Input | MeshData | The mesh data to be analyzed. |
Outputs
| Name | Type | Description |
|---|---|---|
| Vertex Count | int | The total number of vertices in the mesh. |
| Face Count | int | The total number of polygons (faces) in the mesh. |
| Vertex Indices | int | A list containing indices in the vertex array. |
| Face Indices | int | A list containing indices in the face/triangle array. |
| Vertices | List<Vector3> | A list containing the local position of every vertex in the mesh. |
| Vertex Normals | List<Vector3> | A list containing the direction vectors for each vertex normal. |
Parameters
This node does not expose additional parameters.
Behavior Notes
- Performance Monitoring: It is a useful tool for debugging performance, allowing you to keep an eye on how much geometry is being generated by nodes like Subdivision or Copy.
- Vector Lists: The Vertices and Vertex Normals lists can be plugged into nodes like Set Position or custom script nodes to manipulate geometry at a per-vertex level.