SelectionClick(TreeViewItem, bool)
Use this method in TreeView.RowGUI to peform the logic of a mouse click.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Method
- Namespace: UnityEditor.IMGUI.Controls
- Assembly: UnityEditor.CoreModule
protected void SelectionClick(TreeViewItem item, bool keepMultiSelection)
Parameters
TreeViewItem clicked.
If true then keeps the multiselection when clicking on a item already part of the selection. If false then clears the selection before selecting the item clicked. For left button clicks this is usually false. For context clicks it is usually true so a context opereration can operate on the multiselection.
Remarks
This method handles multi-selection when using modifier keys together with the mouse click. It is called automatically if the event is not used by the TreeView.RowGUI method.