Maze / Library /PackageCache /com.unity.visualscripting@1.8.0 /Runtime /VisualScripting.Flow /Ports /UnitPortDefinition.cs
| namespace Unity.VisualScripting | |
| { | |
| public abstract class UnitPortDefinition : IUnitPortDefinition | |
| { | |
| [] | |
| [] | |
| public string key { get; set; } | |
| [] | |
| public string label { get; set; } | |
| [] | |
| public string summary { get; set; } | |
| [] | |
| public bool hideLabel { get; set; } | |
| [] | |
| public virtual bool isValid => !string.IsNullOrEmpty(key); | |
| } | |
| } | |