Version: 2017.3

BoundsConstructor

Cambiar al Manual
public Bounds (Vector3 center, Vector3 size);

Parámetros

center The location of the origin of the Bounds.
size The dimensions of the Bounds.

Descripción

Creates a new Bounds.

Create a new Bounds with the given center and total size. Bound extents will be half the given size.

// Create bounding box centered at the origin
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour { Bounds b;

void Start() { b = new Bounds(new Vector3(0, 0, 0), new Vector3(1, 2, 1)); } }

When no parameters are given to the constructor, the bounds created has a center of (0,0,0) and an extent of (0,0,0).

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