Version: 5.6

Handles

class in UnityEditor

Switch to Manual

Description

Custom 3D GUI controls and drawing in the scene view.

Handles are the 3D controls that Unity uses to manipulate items in the scene view. There are a number of built-in Handle GUIs, such as the familiar tools to position, scale and rotate an object via the Transform component. However, it is also possible to define your own Handle GUIs to use with custom component editors. Such GUIs can be a very useful way to edit procedurally-generated scene content, "invisible" items and groups of related objects, such as waypoints and location markers.

You can also supplement the 3D Handle GUI in the scene with 2D buttons and other controls overlaid on the scene view. This is done by enclosing standard Unity GUI calls in a Handles.BeginGUI / EndGUI pair within the //OnSceneGUI// function. You can use HandleUtility.GUIPointToWorldRay and HandleUtility.WorldToGUIPoint to convert coordinates between 2D GUI and 3D world coordinates.

Static Variables

centerColorЦвет, используемый для маркеров, представляющий собой центр чего либо.
colorColors of the handles.
inverseMatrixОбратная матрица для всех обрабатываемых операций.
lightingМаркет подсвечен?
matrixМатрица для всех обрабатываемых операций.
secondaryColorSoft color to use for for general things.
selectedColorЦвет, использующийся для активного в данный момент маркера.
xAxisColorColor to use for handles that manipulates the X coordinate of something.
yAxisColorЦвет для использования маркера, который управляет Y координатой чего либо.
zAxisColorЦвет для использования маркера, который управляет Z координатой чего либо.
zTestzTest of the handles.

Variables

currentCameraНастройка окна обзора для текущей камеры.

Static Functions

ArrowHandleCapРисует стрелку, примерно как при использовании инструмента "move".
BeginGUIСоздает 2D GUI блок внутри обрабатываемого 3D GUI.
ButtonMake a 3D Button.
CircleHandleCapРисует цилиндр. Передает его в обрабатываемые функции.
ClearCameraОчищаем камеру.
ConeHandleCapРисует конус. Передает в обрабатываемые функции.
CubeHandleCapОтображает куб. Передает в обрабатываемые функции.
CylinderHandleCapРисует цилиндр. Передает его в обрабатываемые функции.
DiscMake a 3D disc that can be dragged with the mouse. Note: Use HandleUtility.GetHandleSize where you might want to have constant screen-sized handles.
DotHandleCapРисует конус. Передает в обрабатываемые функции.
DrawAAConvexPolygonРисует сглаженную линию, указанную массивом точек и шириной.
DrawAAPolyLineРисует сглаженную линию, указанную массивом точек и шириной.
DrawBezierDraw textured bezier line through start and end points with the given tangents. To get an anti-aliased effect use a texture that is 1x2 pixels with one transparent white pixel and one opaque white pixel. The bezier curve will be swept using this texture.
DrawCameraОтображает перед камерой рамку.
DrawDottedLineРисует линию из точек из p1 до p2.
DrawDottedLinesDraw a list of dotted line segments.
DrawLineРисует линию от p1 до p2.
DrawLinesРисует твердый очерченный прямоугольник в 3D пространстве.
DrawPolyLineРисует линию через список всех точек (/points/).
DrawSelectionFrameОтображает перед камерой рамку.
DrawSolidArcРисует круглый сектор ("кусок пирога") в 3D пространстве.
DrawSolidDiscРисует твердый диск в 3D пространстве.
DrawSolidRectangleWithOutlineРисует твердый очерченный прямоугольник в 3D пространстве.
DrawWireArcРисует круглую дугу в 3D пространстве.
DrawWireCubeРисует каркасный куб с центром в точке center и размером size.
DrawWireDiscРисует очерченный диск в 3D пространстве.
EndGUIЗаканчивает 2D GUI блок и возвращается к маркеру 3D GUI.
FreeMoveHandleДелает неограниченно движущийся маркер.
FreeRotateHandleДелает непостоянно вращающийся маркер.
GetMainGameViewSizeGet the width and height of the main game view.
LabelДелает надпись, расположенную в 3D пространстве.
MakeBezierPointsRetuns an array of points to representing the bezier curve. See Handles.DrawBezier.
PositionHandleMake a position handle.
RadiusHandleНазначает радиус маркера в окне Scene.
RectangleHandleCapРисует цилиндр. Передает его в обрабатываемые функции.
RotationHandleНазначает вращение маркера в окне Scene.
ScaleHandleНазначает масштабирование маркера в окне Scene.Важно: Используйте HandleUtility.GetHandleSize если вам нужны маркеры постоянного размера.
ScaleSliderДелает направленно масштабируемый ползунок.
ScaleValueHandleMake a 3D handle that scales a single float.
SetCameraУстанавливает камеру таким образом, что все маркеры и гизмо отображаются с этими настройками.
SliderMake a 3D slider that moves along one axis.
Slider2DMake a 3D slider that moves along a plane defined by two axes.
SnapValueОкругляет значение "val" до ближайшей привязки (привязка может быть только позитивной).
SphereHandleCapРисует сферу. Передает ее в обрабатываемые функции.

Delegates

CapFunctionФункция, использующаяся для отображения маркера, Handles.RectangleCap.
SizeFunctionA delegate type for getting a handle's size based on its current position.