File size: 309 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 | namespace Unity.VisualScripting
{
[Widget(typeof(IEventUnit))]
public sealed class EventUnitWidget : UnitWidget<IEventUnit>
{
public EventUnitWidget(FlowCanvas canvas, IEventUnit unit) : base(canvas, unit) { }
protected override NodeColorMix baseColor => NodeColor.Green;
}
}
|