Versions with this page:
Versions without this page:
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; } }