No Description
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.

InvalidInputWidget.cs 603B

123456789101112131415161718
  1. using UnityEngine;
  2. namespace Unity.VisualScripting
  3. {
  4. [Widget(typeof(InvalidInput))]
  5. public class InvalidInputWidget : UnitInputPortWidget<InvalidInput>
  6. {
  7. public InvalidInputWidget(FlowCanvas canvas, InvalidInput port) : base(canvas, port) { }
  8. protected override Texture handleTextureConnected => BoltFlow.Icons.invalidPortConnected?[12];
  9. protected override Texture handleTextureUnconnected => BoltFlow.Icons.invalidPortUnconnected?[12];
  10. protected override bool colorIfActive => false;
  11. protected override bool canStartConnection => false;
  12. }
  13. }