暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }