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

Handles.EndGUI

建议更改

成功!

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

关闭

提交失败

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

关闭

取消

声明

public static void EndGUI();

描述

结束 2D GUI 块并返回到 3D 句柄 GUI。

其他资源: Handles.BeginGUI


场景视图中的 GUI。

// Change the transform values for the selected object.
// When selected this script starts and the handleExample is managed.
// The HandlesGUI.BeginGUI() and EndGUI() functions allow the shieldArea
// to be changed back to five, which is the starting value.

using UnityEditor; using UnityEngine;

[CustomEditor(typeof(HandleExample))] class HandleExampleEditor : Editor { protected virtual void OnSceneGUI() { HandleExample handleExample = (HandleExample)target;

if (handleExample == null) { return; }

Handles.color = Color.yellow;

GUIStyle style = new GUIStyle(); style.normal.textColor = Color.green;

Vector3 position = handleExample.transform.position + Vector3.up * 2f; string posString = position.ToString();

Handles.Label(position, posString + "\nShieldArea: " + handleExample.shieldArea.ToString(), style );

Handles.BeginGUI(); if (GUILayout.Button("Reset Area", GUILayout.Width(100))) { handleExample.shieldArea = 5; } Handles.EndGUI();

Handles.DrawWireArc( handleExample.transform.position, handleExample.transform.up, -handleExample.transform.right, 180, handleExample.shieldArea);

handleExample.shieldArea = Handles.ScaleValueHandle(handleExample.shieldArea, handleExample.transform.position + handleExample.transform.forward * handleExample.shieldArea, handleExample.transform.rotation, 1, Handles.ConeHandleCap, 1); } }

添加一个脚本,指定可以在 SceneView 中进行动画的对象。

using UnityEngine;

[ExecuteInEditMode] public class HandleExample : MonoBehaviour { public float shieldArea = 5.0f; }