Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

MeshFilter.sharedMesh

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public var sharedMesh: Mesh;
public Mesh sharedMesh;

Descripción

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.

	// Scales PERMANENTLY the size of the mesh by a factor.

var scaleFactor : float = 2;

function Start () { var mesh : Mesh = GetComponent.<MeshFilter>().sharedMesh;

var vertices : Vector3[] = mesh.vertices; for (var p : int = 0; p < vertices.Length; p++) { vertices[p] *= scaleFactor; } mesh.vertices = vertices; mesh.RecalculateNormals(); }
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(); } }