This version of Unity is unsupported.

Mesh Constructor

Switch to Manual
public Mesh();

Description

Creates an empty Mesh.

// Create a new Mesh and assign it to the Mesh filter
using UnityEngine;

public class ExampleClass : MonoBehaviour { void Start() { Mesh mesh = new Mesh(); GetComponent<MeshFilter>().mesh = mesh; } }