Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


vertexCount

Returns the number of vertices in the Mesh (Read Only).
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public int vertexCount { get; }

Examples

using UnityEngine;public class Example : MonoBehaviour{ void Start() { Mesh mesh = GetComponent<MeshFilter>().mesh; print(mesh.vertexCount); }}