You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
582 B
20 lines
582 B
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEditor;
|
|
using UnityEditor.Experimental.GraphView;
|
|
|
|
namespace TNode.Editor{
|
|
public class BlackboardSearchWindowProvider:ISearchWindowProvider{
|
|
private Type _graphType;
|
|
private GraphView _graphView;
|
|
private EditorWindow _editor;
|
|
public List<SearchTreeEntry> CreateSearchTree(SearchWindowContext context){
|
|
return null;
|
|
}
|
|
|
|
public bool OnSelectEntry(SearchTreeEntry SearchTreeEntry, SearchWindowContext context){
|
|
return false;
|
|
}
|
|
}
|
|
|
|
} |