Skip to main content

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

NameTypeDescription
InputMeshDataThe mesh data to be analyzed.

Outputs

NameTypeDescription
Vertex CountintThe total number of vertices in the mesh.
Face CountintThe total number of polygons (faces) in the mesh.
Vertex IndicesintA list containing indices in the vertex array.
Face IndicesintA list containing indices in the face/triangle array.
VerticesList<Vector3>A list containing the local position of every vertex in the mesh.
Vertex NormalsList<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.