SelectMode Verticies

robot_2Generated
code_blocksInput

Description

The Verticies field is a member of the SelectMode enumeration within the Editor.MapEditor namespace. It represents a selection mode used in the map editor to specifically select vertices within the editing environment.

Usage

Use the SelectMode.Verticies enumeration value when you need to set the selection mode of the map editor to target vertices. This is particularly useful when you want to manipulate or inspect individual vertices of a mesh or object within the editor.

Example

// Example of setting the selection mode to Verticies in a map editor
MapEditor editor = new MapEditor();
editor.CurrentSelectMode = SelectMode.Verticies;

// Now the editor is set to select vertices, allowing for vertex-level editing.