Version: 2022.3
언어: 한국어
public Bounds localBounds ;

설명

The bounding box of the renderer in local space.

This is the axis-aligned bounding box fully enclosing the object in local space.

For a SkinnedMeshRenderer, default local bounds are precomputed based on animations associated with that model, which means that the bounding box might be much bigger than the mesh itself. When SkinnedMeshRenderer.updateWhenOffscreen is enabled, Unity recomputes the local bounds every frame.

You can override the default bounding box by setting your own local space bounding box. This is mostly useful when the renderer uses a shader that does custom vertex deformations, and the default bounding box is not accurate. Use ResetLocalBounds to remove custom bounds override. Note that the custom local bounds value is not saved into scenes or prefabs and has to be set from a script at runtime.

using UnityEngine;

public class DrawRendererBounds : MonoBehaviour { // Draws a wireframe box around the selected object, // indicating local space bounding volume. public void OnDrawGizmosSelected() { var r = GetComponent<Renderer>(); if (r == null) return; var bounds = r.localBounds; Gizmos.matrix = transform.localToWorldMatrix; Gizmos.color = Color.blue; Gizmos.DrawWireCube(bounds.center, bounds.extents * 2); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961