新しい Bounds を与えられた center
とトータルの size
で作成します。Bound の extents は与えられたサイズの半分となります。
// Create pillar bounding box centered at the origin
var bounds = Bounds (Vector3.zero, Vector3 (1, 2, 1));
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { public Bounds bounds = new Bounds(Vector3.zero, new Vector3(1, 2, 1)); }