CogwheelUnity/Cogwheel/Library/PackageCache/com.unity.visualscripting@1.9.4/Editor/VisualScripting.Flow/FlowDragAndDropUtility.cs
Spudnut2000 86e8b2168c Init
2024-10-01 23:23:13 -05:00

14 lines
348 B
C#

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;
}
}
}