public Mesh sharedMesh ;

Descripción

Retorna el mesh compartido del 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;

public class Example : MonoBehaviour { // Permanently scales the size of the mesh by a factor.

float scaleFactor = 2f;

void Start() { Mesh mesh = GetComponent<MeshFilter>().sharedMesh;

Vector3[] vertices = mesh.vertices; for (int p = 0; p < vertices.Length; p++) { vertices[p] *= scaleFactor; } mesh.vertices = vertices; mesh.RecalculateNormals(); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961