Description
The Verticies
field is a member of the SelectMode
enumeration within the Editor.MapEditor
namespace. This field represents a selection mode used in the map editor to select vertices. Vertices are the points where two or more edges meet in a geometric shape or mesh.
Usage
Use the SelectMode.Verticies
field when you need to programmatically set the selection mode of the map editor to focus on vertices. This is particularly useful when you want to manipulate or analyze the vertices of a mesh or geometric shape within the editor.
Example
// Example of setting the selection mode to Verticies in a map editor context
// Assuming 'mapEditor' is an instance of a class that uses SelectMode
mapEditor.CurrentSelectMode = SelectMode.Verticies;
// Now the map editor is set to select vertices, allowing for vertex-specific operations.