ME3Explorer.Unreal.Classes.BrushComponent.SetSelection C# (CSharp) Method

SetSelection() public method

public SetSelection ( bool Selected ) : void
Selected bool
return void
        public void SetSelection(bool Selected)
        {
            isSelected = Selected;
        }

Usage Example

Example #1
0
 public void ProcessTreeClick(int[] path, bool AutoFocus)
 {
     if (brush != null)
     {
         brush.SetSelection(true);
     }
 }
All Usage Examples Of ME3Explorer.Unreal.Classes.BrushComponent::SetSelection