INodeWidget.cs
using UnityEngine;
namespace Unity.VisualScripting
{
public interface INodeWidget : IGraphElementWidget
{
Rect outerPosition { get; }
Rect edgePosition { get; }
Rect innerPosition { get; }
}
}
using UnityEngine;
namespace Unity.VisualScripting
{
public interface INodeWidget : IGraphElementWidget
{
Rect outerPosition { get; }
Rect edgePosition { get; }
Rect innerPosition { get; }
}
}