Maze / Library /PackageCache /com.unity.visualscripting@1.8.0 /Runtime /VisualScripting.Flow /EditorBinding /PortLabelAttribute.cs
| using System; | |
| namespace Unity.VisualScripting | |
| { | |
| [] | |
| public class PortLabelAttribute : Attribute | |
| { | |
| public PortLabelAttribute(string label) | |
| { | |
| this.label = label; | |
| } | |
| public string label { get; private set; } | |
| public bool hidden { get; set; } | |
| } | |
| } | |