nevermore-kang's picture
Upload folder using huggingface_hub
18a519f verified
Raw
History Blame Contribute Delete
309 Bytes
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;
}
}