Version: 2022.3
言語: 日本語
public Bounds (Vector3 center, Vector3 size);

パラメーター

center Bounds の中心位置
size Bounds の寸法

説明

新しい Bounds を作成します。

指定の center と合計の size で新しい Bounds を作成します。Bound の extent は、 指定した 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)); } }

コンストラクターにパラメーターが提供されないとき、 bounds は center (0, 0, 0)、extent (0, 0, 0) で作成されます。

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