版本: Unity 6 (6000.0)
语言英语
  • C#

Bounds 构造函数

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交的内容,但我们会阅读用户提出的每个建议更改,并在适当的情况下进行更新。

关闭

提交失败

由于某种原因,您的建议更改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public Bounds(Vector3 center, Vector3 size);

参数

center Bounds 原点的坐标。
size Bounds 的尺寸。

描述

创建一个新的 Bounds。

使用给定的中心和总尺寸创建一个新的 Bounds。Bounds 的范围将是给定尺寸的一半。

// 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 的中心为 (0,0,0),范围为 (0,0,0)。