/
TON618OFF
/
Unity-Project-RTU
Обзор
Документация
Войти
/
TON618OFF
/
Unity-Project-RTU
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Library/PackageCache/com.unity.visualscripting@1.9.4/Runtime/VisualScripting.Flow/Ports/UnitPortDefinition.cs
21 строка
728 B
TON618OFF
release
03 окт 2024, 22:20
03 окт 2024, 22:20
7c70e9f
Код
Авторство
О чём код?
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); } }