Determines how an edit move is constrained.

For example, it is used by PointDragHandle to configure if a point handle can be moved horizontally (parallel to the map) or vertically (in the Z direction).

Since

2022.1

Enumeration Members

Enumeration Members

HORIZONTAL: "HORIZONTAL"

With this constraint, movement is only allowed over a horizontal plane. Vertical location is kept constant.

Since

2023.1

ON_TERRAIN: "ON_TERRAIN"

With this constraint, movement is only allowed on the terrain.

Since

2023.1

VERTICAL: "VERTICAL"

With this constraint, movement is only allowed in the vertical or up direction. Horizontal location is kept constant.

Since

2023.1

XY: "XY"

With this constraint, movement is only allowed in the X and Y directions.

Deprecated

This has been deprecated. Please use ON_TERRAIN instead.

Z: "Z"

With this constraint, movement is only allowed in the Z direction. X and Y are kept constant.

Deprecated

This has been deprecated. Please use VERTICAL instead.