Выберите подходящий для вас язык программирования. Все примеры кода будут представлены на выбранном языке.
Благодарим вас за то, что вы помогаете нам улучшить качество документации по Unity. Однако, мы не можем принять любой перевод. Мы проверяем каждый предложенный вами вариант перевода и принимаем его только если он соответствует оригиналу.
ЗакрытьПо определённым причинам предложенный вами перевод не может быть принят. Пожалуйста <a>попробуйте снова</a> через пару минут. И выражаем вам свою благодарность за то, что вы уделяете время, чтобы улучшить документацию по Unity.
ЗакрытьThe bounding volume of the mesh.
This is the axis-aligned bounding box of the mesh in its local space (that is, not affected
by the transform). Note that the Renderer.bounds property is similar but returns the bounds in world space.
See Also: Bounds class, Renderer.bounds
// Generates planar UV coordinates independent of mesh size // by scaling vertices by the bounding box size
function Start () { var mesh : Mesh = GetComponent.<MeshFilter>().mesh; var vertices : Vector3[] = mesh.vertices; var uvs : Vector2[] = new Vector2[vertices.Length]; var bounds : Bounds = mesh.bounds;
for (var i = 0; i < uvs.Length; i++) uvs[i] = Vector2 (vertices[i].x / bounds.size.x ,vertices[i].z / bounds.size.x);
mesh.uv = uvs; }
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; } }