Interface ISearchFilter
Namespace: InsaneScatterbrain.ScriptGraph.Editor.NodeSearch
Syntax
public interface ISearchFilter
Methods
Apply(IEnumerable<SearchTreeEntry>)
Applies the search filter to the given tree and returns the filtered tree.
Declaration
List<SearchTreeEntry> Apply(IEnumerable<SearchTreeEntry> tree)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<T><UnityEditor.Experimental.GraphView.SearchTreeEntry> | tree | The original tree. |
Returns
Type | Description |
---|---|
System.Collections.Generic.List<T><UnityEditor.Experimental.GraphView.SearchTreeEntry> | The tree after the filter applied to it. |