book_4_sparkGenerated
code_blocksInput

Description

The Edges field is a member of the SelectMode enumeration within the Editor.MapEditor namespace. This enumeration is used to specify different selection modes available in the map editor. The Edges mode allows users to select edges within the map editor environment.

Usage

To use the Edges selection mode, set the selection mode of the map editor to SelectMode.Edges. This will enable the selection of edges in the map editor, allowing for operations such as moving, scaling, or modifying edges.

Example

// Example of setting the selection mode to Edges in a map editor

// Assuming 'mapEditor' is an instance of a map editor class
mapEditor.SelectionMode = SelectMode.Edges;

// Now the map editor is in Edges selection mode, allowing edge-specific operations.