Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Enhance] Prioritize node created from assets #222

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,15 @@ protected NodeInspectorObject nodeInspector

public SerializedObject serializedGraph { get; private set; }

Dictionary<Type, (Type nodeType, MethodInfo initalizeNodeFromObject)> nodeTypePerCreateAssetType = new Dictionary<Type, (Type, MethodInfo)>();
SortedDictionary<Type, (Type nodeType, MethodInfo initalizeNodeFromObject)> nodeTypePerCreateAssetType = new SortedDictionary<Type, (Type, MethodInfo)>(
// Sort by order of inheritances, so that the descendant type is prioritized over the ascendant type.
// Otherwise, sort by name.
Comparer<Type>.Create((Type x, Type y) => {
if (x.IsSubclassOf(y)) return -1;
else if (y.IsSubclassOf(x)) return 1;
else return x.FullName.CompareTo(y.FullName);
})
);

public BaseGraphView(EditorWindow window)
{
Expand Down