namespace UnityEngine.ProBuilder { /// /// Defines how the Shift key modifies the selection when drag-selecting mesh elements. /// /// Editor only. public enum SelectionModifierBehavior { /// /// Always add to the selection. /// Add, /// /// Always subtract from the selection. /// Subtract, /// /// Invert the selected faces (default). /// Difference } }