From c8b893edbabf7a6b6e7b22a3f160852c6b6c06be Mon Sep 17 00:00:00 2001 From: Marco Secchi Date: Tue, 5 Nov 2019 13:19:28 +0100 Subject: [PATCH] Fix wrong override message. --- Scripts/Editor/NodeGraphEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/Editor/NodeGraphEditor.cs b/Scripts/Editor/NodeGraphEditor.cs index bc6e14c..843d04c 100644 --- a/Scripts/Editor/NodeGraphEditor.cs +++ b/Scripts/Editor/NodeGraphEditor.cs @@ -133,7 +133,7 @@ namespace XNodeEditor { /// Deal with objects dropped into the graph through DragAndDrop public virtual void OnDropObjects(UnityEngine.Object[] objects) { - Debug.Log("No OnDropItems override defined for " + GetType()); + Debug.Log("No OnDropObjects override defined for " + GetType()); } /// Create a node and save it in the graph asset