Version: 2017.2
public static void DrawCube (Vector3 center, Vector3 size);

描述

使用 centersize 绘制一个实心盒体。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void OnDrawGizmosSelected() { Gizmos.color = new Color(1, 0, 0, 0.5F); Gizmos.DrawCube(transform.position, new Vector3(1, 1, 1)); } }