Description
The Objects
field is a member of the SelectMode
enumeration within the Editor.MapEditor
namespace. This field is used to specify a selection mode in the map editor that allows users to select entities and solids that are not part of any entities. This mode is particularly useful when you want to manipulate individual objects without affecting grouped entities or other complex structures.
Usage
To use the Objects
selection mode, set the selection mode of your map editor to SelectMode.Objects
. This will enable the selection of individual entities and solids that are not encapsulated within other entities.
Example
// Example of setting the selection mode to Objects in a map editor
MapEditor editor = new MapEditor();
editor.SelectionMode = SelectMode.Objects;
// Now, the editor will allow selection of individual entities and solids
// that are not part of any other entities.