Version: 2017.3
public Mesh sharedMesh ;

Description

Returns the shared mesh of the mesh filter.

It is recommended to use this function only for reading mesh data and not for writing, since you might modify imported assets and all objects that use this mesh will be affected. Also, be aware that is not possible to undo the changes done to this mesh.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public float scaleFactor = 2; void Start() { Mesh mesh = GetComponent<MeshFilter>().sharedMesh; Vector3[] vertices = mesh.vertices; int p = 0; while (p < vertices.Length) { vertices[p] *= scaleFactor; p++; } mesh.vertices = vertices; mesh.RecalculateNormals(); } }