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

Handles.DrawWireCube

建议更改

成功!

感谢您帮助我们改进 Unity 文档质量。虽然我们无法完全接受所有提交内容,但我们会阅读用户建议的每处更改之处,并在需要时进行更新。

关闭

提交失败

由于某些原因,无法提交您建议的更改。请在几分钟后<a>重试</a>。感谢您抽出时间帮助我们改进 Unity 文档质量。

关闭

取消

声明

public static void DrawWireCube(Vector3 center, Vector3 size);

描述

使用 centersize 绘制一个线框盒子。

using UnityEditor;
using UnityEngine;
using System.Collections;

//this class should exist somewhere in your project public class WireCubeExample : MonoBehaviour { public Vector3 size;

// ...other code... }
// Editor script. This would go into an Editor directory.
using UnityEditor;
using UnityEngine;

[CustomEditor(typeof(WireCubeExample))] public class WireBoxExample : Editor { void OnSceneGUI() { Handles.color = Color.yellow; WireCubeExample myObj = (WireCubeExample)target; Handles.DrawWireCube(myObj.transform.position, myObj.size); } }