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.

PortLabelAttribute.cs 418B

12345678910111213141516
  1. using System;
  2. namespace Unity.VisualScripting
  3. {
  4. [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false, Inherited = false)]
  5. public class PortLabelAttribute : Attribute
  6. {
  7. public PortLabelAttribute(string label)
  8. {
  9. this.label = label;
  10. }
  11. public string label { get; private set; }
  12. public bool hidden { get; set; }
  13. }
  14. }