Rasagar/Library/PackageCache/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/UnitPortDefinition.cs

22 lines
728 B
C#
Raw Normal View History

2024-08-26 13:07:20 -07:00
namespace Unity.VisualScripting
{
public abstract class UnitPortDefinition : IUnitPortDefinition
{
[Serialize, Inspectable, InspectorDelayed]
[WarnBeforeEditing("Edit Port Key", "Changing the key of this definition will break any existing connection to this port. Are you sure you want to continue?", null, "")]
public string key { get; set; }
[Serialize, Inspectable]
public string label { get; set; }
[Serialize, Inspectable, InspectorTextArea]
public string summary { get; set; }
[Serialize, Inspectable]
public bool hideLabel { get; set; }
[DoNotSerialize]
public virtual bool isValid => !string.IsNullOrEmpty(key);
}
}