public Bounds bounds ;

Descripción

El volumen de-limitador del renderer (Lectura solamente).

Ésta es la caja delimitadora alineada con el eje que encierra totalmente el objeto en el espacio del mundo.

Using bounds is convenient to make rough approximations about the object's location and its extents. For example, the center property is often a more precise approximation to the center of the object than Transform.position, especially if the object is not symmetrical.

Tenga en cuenta que la propiedad Mesh.bounds es similar pero devuelve los límites del mesh en el espacio local.

using UnityEngine;

public class Example : MonoBehaviour { Renderer rend;

void Start() { rend = GetComponent<Renderer>(); }

// Draws a wireframe sphere in the Scene view, fully enclosing // the object. void OnDrawGizmosSelected() { // A sphere that fully encloses the bounding box. Vector3 center = rend.bounds.center; float radius = rend.bounds.extents.magnitude;

Gizmos.color = Color.white; Gizmos.DrawWireSphere(center, radius); } }

See Also: Bounds, Mesh.bounds.

Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961