Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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