Version: 2017.2
public Bounds bounds ;

描述

渲染器的包围体积(只读)。

这是完全包裹了世界空间中的对象的轴对齐包围盒。

使用 bounds 可以方便地描述对象位置及其范围的 近似形状。例如,在描述对象中心时, center 属性通常比 Transform.position 更精确, 特别是当对象不对称时。

注意,Mesh.bounds 属性与此类似,但返回的是本地空间中网格的边界。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Renderer rend; void Start() { rend = GetComponent<Renderer>(); } void OnDrawGizmosSelected() { Vector3 center = rend.bounds.center; float radius = rend.bounds.extents.magnitude; Gizmos.color = Color.white; Gizmos.DrawWireSphere(center, radius); } }

另请参阅:BoundsMesh.bounds

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