Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

EventUnitWidget.cs 309B

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