版本: Unity 6 (6000.0)
语言英语
  • C#

Mesh.bounds

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。尽管我们无法接受所有提交,但我们确实阅读了用户提出的每个建议更改,并在适用的情况下进行更新。

关闭

提交失败

由于某些原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

切换到手册
public Bounds bounds;

描述

网格的包围体积。

这是网格在其自身空间中的轴对齐包围盒,因此如果您更改 Transform 的位置、旋转或缩放,边界不会改变。 Renderer.bounds 属性与此类似,但返回世界空间中的边界。

其他资源:Bounds 类,Renderer.bounds

// Generates planar UV coordinates independent of mesh size
// by scaling vertices by the bounding box size

using UnityEngine; using System.Collections;

public class ExampleClass : MonoBehaviour { void Start() { Mesh mesh = GetComponent<MeshFilter>().mesh; Vector3[] vertices = mesh.vertices; Vector2[] uvs = new Vector2[vertices.Length]; Bounds bounds = mesh.bounds; int i = 0; while (i < uvs.Length) { uvs[i] = new Vector2(vertices[i].x / bounds.size.x, vertices[i].z / bounds.size.x); i++; } mesh.uv = uvs; } }