暫無描述
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.

UnitFooterPortsAttribute.cs 434B

12345678910111213
  1. using System;
  2. namespace Unity.VisualScripting
  3. {
  4. [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
  5. public sealed class UnitFooterPortsAttribute : Attribute
  6. {
  7. public bool ControlInputs { get; set; } = false;
  8. public bool ControlOutputs { get; set; } = false;
  9. public bool ValueInputs { get; set; } = true;
  10. public bool ValueOutputs { get; set; } = true;
  11. }
  12. }