MyBook/Library/PackageCache/com.unity.visualscripting@1.9.4/Editor/VisualScripting.Flow/FlowDragAndDropUtility.cs

14 lines
348 B
C#
Raw Permalink Normal View History

2025-03-22 14:59:41 +08:00
using UnityEditor;
namespace Unity.VisualScripting
{
public static class FlowDragAndDropUtility
{
public static bool AcceptsScript(IGraph graph)
{
// Can't drag a graph into itself
return DragAndDrop.objectReferences[0] is ScriptGraphAsset graphAsset && graph != graphAsset.graph;
}
}
}